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

Unified Diff: Source/bindings/tests/results/V8TestPrivateScriptInterface.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/tests/results/V8TestPrivateScriptInterface.h
diff --git a/Source/bindings/tests/results/V8TestPrivateScriptInterface.h b/Source/bindings/tests/results/V8TestPrivateScriptInterface.h
new file mode 100644
index 0000000000000000000000000000000000000000..a9644bf4195337478abcace7974f51ff6b1b8f58
--- /dev/null
+++ b/Source/bindings/tests/results/V8TestPrivateScriptInterface.h
@@ -0,0 +1,32 @@
+// 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.
+
+// This file has been auto-generated by code_generator_v8.py. DO NOT MODIFY!
+
+#ifndef V8TestPrivateScriptInterface_h
+#define V8TestPrivateScriptInterface_h
+
+#include "bindings/v8/V8Binding.h"
+
+namespace WebCore {
+
+class Document;
+class LocalFrame;
+class Node;
+
+class V8TestPrivateScriptInterface {
+public:
+ static bool doNothing(LocalFrame* frame);
+ static bool return123(LocalFrame* frame, int* output);
+ static bool echoInteger(LocalFrame* frame, int value, int* output);
+ static bool echoString(LocalFrame* frame, String value, String* output);
+ static bool echoNode(LocalFrame* frame, PassRefPtrWillBeRawPtr<Node> value, RefPtrWillBeRawPtr<Node>* output);
+ static bool addInteger(LocalFrame* frame, int value1, int value2, int* output);
+ static bool addString(LocalFrame* frame, String value1, String value2, String* output);
+ static bool setIntegerToDocument(LocalFrame* frame, PassRefPtrWillBeRawPtr<Document> document, int value);
+ static bool getIntegerFromDocument(LocalFrame* frame, PassRefPtrWillBeRawPtr<Document> document, int* output);
+};
+
+}
+#endif // V8TestPrivateScriptInterface_h

Powered by Google App Engine
This is Rietveld 408576698