| Index: third_party/WebKit/Source/modules/extensions/Chrome.h
|
| diff --git a/third_party/WebKit/Source/modules/extensions/Chrome.h b/third_party/WebKit/Source/modules/extensions/Chrome.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..cd123b778b30619d8a77f1a6a5e12398779d67c0
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/modules/extensions/Chrome.h
|
| @@ -0,0 +1,50 @@
|
| +// Copyright 2016 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 Chrome_h
|
| +#define Chrome_h
|
| +
|
| +#include "bindings/core/v8/ScriptWrappable.h"
|
| +#include "core/frame/LocalFrame.h"
|
| +#include "platform/Supplementable.h"
|
| +#include "platform/heap/Heap.h"
|
| +
|
| +namespace blink {
|
| +
|
| +class LocalFrame;
|
| +class DeveloperPrivate;
|
| +
|
| +class Chrome
|
| + : public GarbageCollected<Chrome>
|
| + , public ScriptWrappable
|
| + , public blink::Supplementable<Chrome> {
|
| + DEFINE_WRAPPERTYPEINFO();
|
| + USING_GARBAGE_COLLECTED_MIXIN(Chrome);
|
| +
|
| +public:
|
| + static Chrome* create(LocalFrame* frame)
|
| + {
|
| + return new Chrome(frame);
|
| + }
|
| +
|
| + Chrome(LocalFrame* frame)
|
| + : m_frame(frame)
|
| + {
|
| + }
|
| +
|
| + DeveloperPrivate* developerPrivate(ScriptState*);
|
| +
|
| + LocalFrame* frame() { return m_frame; }
|
| +
|
| + DECLARE_TRACE();
|
| +
|
| +private:
|
| + Member<LocalFrame> m_frame;
|
| +
|
| + Member<DeveloperPrivate> m_developerPrivate;
|
| +};
|
| +
|
| +} // namespace blink
|
| +
|
| +#endif // Chrome_h
|
|
|