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

Unified Diff: Source/bindings/modules/v8/V8BindingForModules.h

Issue 949193002: [bindings] Remove SQLTransaction's usage of custom binding. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Introducing V8BindingForModules Created 5 years, 10 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/modules/v8/V8BindingForModules.h
diff --git a/Source/bindings/modules/v8/V8BindingForModules.h b/Source/bindings/modules/v8/V8BindingForModules.h
new file mode 100644
index 0000000000000000000000000000000000000000..8214d42bb015d5fd6090b86e6745264d3874ef81
--- /dev/null
+++ b/Source/bindings/modules/v8/V8BindingForModules.h
@@ -0,0 +1,20 @@
+// Copyright (c) 2015 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 V8BindingForModules_h
+#define V8BindingForModules_h
+
+#include "bindings/core/v8/Nullable.h"
+#include "wtf/Vector.h"
+
+namespace blink {
+
+class SQLValue;
+class ScriptValue;
+
+Vector<SQLValue> toSQLValueArray(const Nullable<Vector<ScriptValue>>& values);
+
+} // namespace blink
+
+#endif // V8BindingForModules_h

Powered by Google App Engine
This is Rietveld 408576698