| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 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 V8InjectedScriptHost_h | 5 #ifndef V8InjectedScriptHost_h |
| 6 #define V8InjectedScriptHost_h | 6 #define V8InjectedScriptHost_h |
| 7 | 7 |
| 8 #include <v8.h> | 8 #include <v8.h> |
| 9 | 9 |
| 10 namespace blink { | 10 namespace blink { |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 static v8::Local<v8::Object> create(v8::Local<v8::Context>, V8DebuggerImpl*)
; | 23 static v8::Local<v8::Object> create(v8::Local<v8::Context>, V8DebuggerImpl*)
; |
| 24 | 24 |
| 25 private: | 25 private: |
| 26 static void internalConstructorNameCallback(const v8::FunctionCallbackInfo<v
8::Value>&); | 26 static void internalConstructorNameCallback(const v8::FunctionCallbackInfo<v
8::Value>&); |
| 27 static void formatAccessorsAsProperties(const v8::FunctionCallbackInfo<v8::V
alue>&); | 27 static void formatAccessorsAsProperties(const v8::FunctionCallbackInfo<v8::V
alue>&); |
| 28 static void isTypedArrayCallback(const v8::FunctionCallbackInfo<v8::Value>&)
; | 28 static void isTypedArrayCallback(const v8::FunctionCallbackInfo<v8::Value>&)
; |
| 29 static void subtypeCallback(const v8::FunctionCallbackInfo<v8::Value>&); | 29 static void subtypeCallback(const v8::FunctionCallbackInfo<v8::Value>&); |
| 30 static void generatorObjectDetailsCallback(const v8::FunctionCallbackInfo<v8
::Value>&); | 30 static void generatorObjectDetailsCallback(const v8::FunctionCallbackInfo<v8
::Value>&); |
| 31 static void collectionEntriesCallback(const v8::FunctionCallbackInfo<v8::Val
ue>&); | 31 static void collectionEntriesCallback(const v8::FunctionCallbackInfo<v8::Val
ue>&); |
| 32 static void getInternalPropertiesCallback(const v8::FunctionCallbackInfo<v8:
:Value>&); | 32 static void getInternalPropertiesCallback(const v8::FunctionCallbackInfo<v8:
:Value>&); |
| 33 static void getEventListenersCallback(const v8::FunctionCallbackInfo<v8::Val
ue>&); | |
| 34 static void suppressWarningsAndCallFunctionCallback(const v8::FunctionCallba
ckInfo<v8::Value>&); | 33 static void suppressWarningsAndCallFunctionCallback(const v8::FunctionCallba
ckInfo<v8::Value>&); |
| 35 static void setNonEnumPropertyCallback(const v8::FunctionCallbackInfo<v8::Va
lue>&); | 34 static void setNonEnumPropertyCallback(const v8::FunctionCallbackInfo<v8::Va
lue>&); |
| 36 static void setFunctionVariableValueCallback(const v8::FunctionCallbackInfo<
v8::Value>&); | 35 static void setFunctionVariableValueCallback(const v8::FunctionCallbackInfo<
v8::Value>&); |
| 37 static void bindCallback(const v8::FunctionCallbackInfo<v8::Value>&); | 36 static void bindCallback(const v8::FunctionCallbackInfo<v8::Value>&); |
| 38 static void proxyTargetValueCallback(const v8::FunctionCallbackInfo<v8::Valu
e>&); | 37 static void proxyTargetValueCallback(const v8::FunctionCallbackInfo<v8::Valu
e>&); |
| 39 static void prototypeCallback(const v8::FunctionCallbackInfo<v8::Value>&); | 38 static void prototypeCallback(const v8::FunctionCallbackInfo<v8::Value>&); |
| 40 }; | 39 }; |
| 41 | 40 |
| 42 } // namespace blink | 41 } // namespace blink |
| 43 | 42 |
| 44 #endif // V8InjectedScriptHost_h | 43 #endif // V8InjectedScriptHost_h |
| OLD | NEW |