blob: 5305bfd6e6381fa85a727f379752a5ee230636b9 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef THIRD_PARTY_BLINK_RENDERER_MODULES_SERIAL_WORKER_NAVIGATOR_SERIAL_H_
#define THIRD_PARTY_BLINK_RENDERER_MODULES_SERIAL_WORKER_NAVIGATOR_SERIAL_H_
#include "third_party/blink/renderer/core/workers/worker_navigator.h"
#include "third_party/blink/renderer/platform/heap/handle.h"
#include "third_party/blink/renderer/platform/supplementable.h"
namespace blink {
class ScriptState;
class Serial;
class WorkerNavigatorSerial final
: public GarbageCollected<WorkerNavigatorSerial>,
public Supplement<WorkerNavigator> {
USING_GARBAGE_COLLECTED_MIXIN(WorkerNavigatorSerial);
public:
static const char kSupplementName[];
static WorkerNavigatorSerial& From(WorkerNavigator&);
static Serial* serial(ScriptState*, WorkerNavigator&);
Serial* serial(ScriptState*);
explicit WorkerNavigatorSerial(WorkerNavigator&);
void Trace(Visitor*) override;
private:
Member<Serial> serial_;
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_MODULES_SERIAL_WORKER_NAVIGATOR_SERIAL_H_