Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1459)

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/public/V8InspectorClient.h

Issue 2199943004: [DevTools] Rename V8Debugger to V8Inspector. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/v8_inspector/public/V8InspectorClient.h
diff --git a/third_party/WebKit/Source/platform/v8_inspector/public/V8DebuggerClient.h b/third_party/WebKit/Source/platform/v8_inspector/public/V8InspectorClient.h
similarity index 92%
rename from third_party/WebKit/Source/platform/v8_inspector/public/V8DebuggerClient.h
rename to third_party/WebKit/Source/platform/v8_inspector/public/V8InspectorClient.h
index e185a018643d4a21cf3e6b0593fc675c4354d5e5..38e978474c4f93f33ea998f9a8b6088442ae525a 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/public/V8DebuggerClient.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/public/V8InspectorClient.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef V8DebuggerClient_h
-#define V8DebuggerClient_h
+#ifndef V8InspectorClient_h
+#define V8InspectorClient_h
#include "platform/inspector_protocol/Platform.h"
#include "platform/v8_inspector/public/V8ContextInfo.h"
@@ -16,9 +16,9 @@ class V8StackTrace;
enum class V8ConsoleAPIType { kClear, kDebug, kLog, kInfo, kWarning, kError };
-class PLATFORM_EXPORT V8DebuggerClient {
+class PLATFORM_EXPORT V8InspectorClient {
public:
- virtual ~V8DebuggerClient() { }
+ virtual ~V8InspectorClient() { }
virtual void runMessageLoopOnPause(int contextGroupId) = 0;
virtual void quitMessageLoopOnPause() = 0;
virtual void muteWarningsAndDeprecations(int contextGroupId) = 0;
@@ -53,4 +53,4 @@ public:
} // namespace blink
-#endif // V8DebuggerClient_h
+#endif // V8InspectorClient_h

Powered by Google App Engine
This is Rietveld 408576698