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 6944c35439bfdf3a7ec7dc0e20f6583f5a7ed2fb..6844a39c49cef5f729da5353f4a70e1f45917171 100644 |
| --- a/third_party/WebKit/Source/platform/v8_inspector/public/V8DebuggerClient.h |
| +++ b/third_party/WebKit/Source/platform/v8_inspector/public/V8DebuggerClient.h |
| @@ -39,8 +39,7 @@ public: |
| virtual void consoleTime(const String16& title) = 0; |
| virtual void consoleTimeEnd(const String16& title) = 0; |
| virtual void consoleTimeStamp(const String16& title) = 0; |
| - // TODO(dgozman: route all messages through here, remove FrameConsole. |
| - virtual void messageAddedToConsole(int contextGroupId, MessageSource, MessageLevel, const String16& message, const String16& url, unsigned lineNumber, unsigned columnNumber, V8StackTrace*) = 0; |
| + virtual void consoleAPIMessage(int contextGroupId, MessageLevel, const String16& message, const String16& url, unsigned lineNumber, unsigned columnNumber, V8StackTrace*) = 0; |
|
kozy
2016/07/13 18:48:49
Please replace this method in V8Inspector.h
dgozman
2016/07/13 21:08:07
Done.
|
| virtual v8::MaybeLocal<v8::Value> memoryInfo(v8::Isolate*, v8::Local<v8::Context>) = 0; |