| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 // This file is for functions that are used only by generated code. | 5 // This file is for functions that are used only by generated code. |
| 6 // CAUTION: | 6 // CAUTION: |
| 7 // All functions defined in this file should be used by generated code only. | 7 // All functions defined in this file should be used by generated code only. |
| 8 // If you want to use them from hand-written code, please find appropriate | 8 // If you want to use them from hand-written code, please find appropriate |
| 9 // location and move them to that location. | 9 // location and move them to that location. |
| 10 | 10 |
| 11 #ifndef GeneratedCodeHelper_h | 11 #ifndef GeneratedCodeHelper_h |
| 12 #define GeneratedCodeHelper_h | 12 #define GeneratedCodeHelper_h |
| 13 | 13 |
| 14 #include "bindings/core/v8/ExceptionState.h" | 14 #include "bindings/core/v8/ExceptionState.h" |
| 15 #include "bindings/core/v8/V8Binding.h" | 15 #include "bindings/core/v8/V8BindingForCore.h" |
| 16 #include "core/CoreExport.h" | 16 #include "core/CoreExport.h" |
| 17 #include "platform/wtf/PassRefPtr.h" | 17 #include "platform/wtf/PassRefPtr.h" |
| 18 #include "v8/include/v8.h" | 18 #include "v8/include/v8.h" |
| 19 | 19 |
| 20 namespace blink { | 20 namespace blink { |
| 21 | 21 |
| 22 class ScriptState; | 22 class ScriptState; |
| 23 class SerializedScriptValue; | 23 class SerializedScriptValue; |
| 24 | 24 |
| 25 CORE_EXPORT void V8ConstructorAttributeGetter( | 25 CORE_EXPORT void V8ConstructorAttributeGetter( |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 using InstallRuntimeEnabledFunction = | 67 using InstallRuntimeEnabledFunction = |
| 68 void (*)(v8::Isolate* isolate, | 68 void (*)(v8::Isolate* isolate, |
| 69 const DOMWrapperWorld& world, | 69 const DOMWrapperWorld& world, |
| 70 v8::Local<v8::Object> instance, | 70 v8::Local<v8::Object> instance, |
| 71 v8::Local<v8::Object> prototype, | 71 v8::Local<v8::Object> prototype, |
| 72 v8::Local<v8::Function> interface); | 72 v8::Local<v8::Function> interface); |
| 73 | 73 |
| 74 } // namespace blink | 74 } // namespace blink |
| 75 | 75 |
| 76 #endif // GeneratedCodeHelper_h | 76 #endif // GeneratedCodeHelper_h |
| OLD | NEW |