OLD | NEW |
1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8BindingForModules_h | 5 #ifndef V8BindingForModules_h |
6 #define V8BindingForModules_h | 6 #define V8BindingForModules_h |
7 | 7 |
8 #include "bindings/core/v8/V8Binding.h" | 8 #include "bindings/core/v8/V8Binding.h" |
9 #include "modules/ModulesExport.h" | 9 #include "modules/ModulesExport.h" |
10 #include "modules/webdatabase/sqlite/SQLValue.h" | 10 #include "modules/webdatabase/sqlite/SQLValue.h" |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 const IDBKeyPath&); | 54 const IDBKeyPath&); |
55 }; | 55 }; |
56 | 56 |
57 template <> | 57 template <> |
58 struct NativeValueTraits<IDBKeyRange*> { | 58 struct NativeValueTraits<IDBKeyRange*> { |
59 static IDBKeyRange* nativeValue(v8::Isolate*, | 59 static IDBKeyRange* nativeValue(v8::Isolate*, |
60 v8::Local<v8::Value>, | 60 v8::Local<v8::Value>, |
61 ExceptionState&); | 61 ExceptionState&); |
62 }; | 62 }; |
63 | 63 |
64 void registerInstallOriginTrialsForModules(); | |
65 | |
66 } // namespace blink | 64 } // namespace blink |
67 | 65 |
68 #endif // V8BindingForModules_h | 66 #endif // V8BindingForModules_h |
OLD | NEW |