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

Unified Diff: Source/bindings/v8/BlinkInJSController.h

Issue 345893002: Implement an infrastructure of Blink-in-JS Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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: Source/bindings/v8/BlinkInJSController.h
diff --git a/Source/bindings/v8/BlinkInJSController.h b/Source/bindings/v8/BlinkInJSController.h
new file mode 100644
index 0000000000000000000000000000000000000000..92a1dafcd6c658aa80b41c29a695ec49eecfa824
--- /dev/null
+++ b/Source/bindings/v8/BlinkInJSController.h
@@ -0,0 +1,20 @@
+// Copyright 2014 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 BlinkInJSController_h
+#define BlinkInJSController_h
+
+#include "wtf/text/WTFString.h"
+#include <v8.h>
+
+namespace WebCore {
+
+class BlinkInJSController {
+public:
+ static v8::Handle<v8::Value> run(v8::Isolate*, String className, String functionName, v8::Handle<v8::Value> receiver, int argc, v8::Handle<v8::Value> argv[]);
+};
+
+} // namespace WebCore
+
+#endif // V8BlinkInJSController_h

Powered by Google App Engine
This is Rietveld 408576698