Chromium Code Reviews| Index: third_party/WebKit/Source/platform/v8_inspector/public/V8DebuggerClient.h |
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/public/V8DebuggerClient.h b/third_party/WebKit/Source/platform/v8_inspector/public/V8DebuggerClient.h |
| index 3747f66707d0513b68c6dae619d539343039144e..8b9a9531925c468385b0a7398187f513bea655a3 100644 |
| --- a/third_party/WebKit/Source/platform/v8_inspector/public/V8DebuggerClient.h |
| +++ b/third_party/WebKit/Source/platform/v8_inspector/public/V8DebuggerClient.h |
| @@ -24,7 +24,6 @@ public: |
| virtual void unmuteWarningsAndDeprecations(int contextGroupId) = 0; |
|
pfeldman
2016/07/25 17:33:30
ditto
|
| virtual void beginUserGesture() = 0; |
| virtual void endUserGesture() = 0; |
| - virtual bool callingContextCanAccessContext(v8::Local<v8::Context> calling, v8::Local<v8::Context> target) = 0; |
| virtual String16 valueSubtype(v8::Local<v8::Value>) = 0; |
| virtual bool formatAccessorsAsProperties(v8::Local<v8::Value>) = 0; |
| virtual bool isExecutionAllowed() = 0; |
|
pfeldman
2016/07/25 17:33:29
You have a TODO to remove this.
|
| @@ -33,6 +32,8 @@ public: |
| virtual bool isInspectableHeapObject(v8::Local<v8::Object>) = 0; |
|
pfeldman
2016/07/25 17:33:29
I'd rather optionally install implementation of th
|
| virtual void enableAsyncInstrumentation() = 0; |
|
pfeldman
2016/07/25 17:33:30
I don't think we save anything with these, lets re
|
| virtual void disableAsyncInstrumentation() = 0; |
|
pfeldman
2016/07/25 17:33:30
ditto
|
| + virtual void beginEnsureAllContextsInGroup(int contextGroupId) = 0; |
|
pfeldman
2016/07/25 17:33:30
I don't get what it does from its name.
|
| + virtual void endEnsureAllContextsInGroup(int contextGroupId) = 0; |
| virtual void installAdditionalCommandLineAPI(v8::Local<v8::Context>, v8::Local<v8::Object>) = 0; |