Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(47)

Unified Diff: third_party/WebKit/Source/modules/extensions/Chrome.h

Issue 2074263002: [Experimental] Fool around with exposing extension bindings via blink Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698