| 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 "platform/inspector_protocol/InspectorProtocol.h" |
| 8 #include <v8.h> | 9 #include <v8.h> |
| 9 | 10 |
| 10 namespace blink { | 11 namespace blink { |
| 11 | 12 |
| 12 class V8InspectorImpl; | 13 class V8InspectorImpl; |
| 13 | 14 |
| 14 // SECURITY NOTE: Although the InjectedScriptHost is intended for use solely by
the inspector, | 15 // SECURITY NOTE: Although the InjectedScriptHost is intended for use solely by
the inspector, |
| 15 // a reference to the InjectedScriptHost may be leaked to the page being inspect
ed. Thus, the | 16 // a reference to the InjectedScriptHost may be leaked to the page being inspect
ed. Thus, the |
| 16 // InjectedScriptHost must never implemment methods that have more power over th
e page than the | 17 // InjectedScriptHost must never implemment methods that have more power over th
e page than the |
| 17 // page already has itself (e.g. origin restriction bypasses). | 18 // page already has itself (e.g. origin restriction bypasses). |
| 18 | 19 |
| 19 class V8InjectedScriptHost { | 20 class V8InjectedScriptHost { |
| 20 public: | 21 public: |
| 21 // We expect that debugger outlives any JS context and thus V8InjectedScript
Host (owned by JS) | 22 // We expect that debugger outlives any JS context and thus V8InjectedScript
Host (owned by JS) |
| 22 // is destroyed before inspector. | 23 // is destroyed before inspector. |
| 23 static v8::Local<v8::Object> create(v8::Local<v8::Context>, V8InspectorImpl*
); | 24 static v8::Local<v8::Object> create(v8::Local<v8::Context>, V8InspectorImpl*
); |
| 24 private: | 25 private: |
| 25 static void internalConstructorNameCallback(const v8::FunctionCallbackInfo<v
8::Value>&); | 26 static void internalConstructorNameCallback(const v8::FunctionCallbackInfo<v
8::Value>&); |
| 26 static void formatAccessorsAsProperties(const v8::FunctionCallbackInfo<v8::V
alue>&); | 27 static void formatAccessorsAsProperties(const v8::FunctionCallbackInfo<v8::V
alue>&); |
| 27 static void subtypeCallback(const v8::FunctionCallbackInfo<v8::Value>&); | 28 static void subtypeCallback(const v8::FunctionCallbackInfo<v8::Value>&); |
| 28 static void getInternalPropertiesCallback(const v8::FunctionCallbackInfo<v8:
:Value>&); | 29 static void getInternalPropertiesCallback(const v8::FunctionCallbackInfo<v8:
:Value>&); |
| 29 static void objectHasOwnPropertyCallback(const v8::FunctionCallbackInfo<v8::
Value>&); | 30 static void objectHasOwnPropertyCallback(const v8::FunctionCallbackInfo<v8::
Value>&); |
| 30 static void bindCallback(const v8::FunctionCallbackInfo<v8::Value>&); | 31 static void bindCallback(const v8::FunctionCallbackInfo<v8::Value>&); |
| 31 static void proxyTargetValueCallback(const v8::FunctionCallbackInfo<v8::Valu
e>&); | 32 static void proxyTargetValueCallback(const v8::FunctionCallbackInfo<v8::Valu
e>&); |
| 32 }; | 33 }; |
| 33 | 34 |
| 34 } // namespace blink | 35 } // namespace blink |
| 35 | 36 |
| 36 #endif // V8InjectedScriptHost_h | 37 #endif // V8InjectedScriptHost_h |
| OLD | NEW |