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

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

Issue 2044343002: DevTools: update V8Inspector to work with the new v8_inspector API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comment addressed Created 4 years, 6 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/V8InspectorSessionClient.h
diff --git a/third_party/WebKit/Source/platform/v8_inspector/public/V8InspectorSessionClient.h b/third_party/WebKit/Source/platform/v8_inspector/public/V8InspectorSessionClient.h
index fc4998630e118eb13f91c1f7de5b7bbcfcc9e68f..87772b3cca241effb4cea4d7c493f496c17f6b99 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/public/V8InspectorSessionClient.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/public/V8InspectorSessionClient.h
@@ -5,18 +5,17 @@
#ifndef V8InspectorSessionClient_h
#define V8InspectorSessionClient_h
-#include "platform/PlatformExport.h"
#include "platform/inspector_protocol/FrontendChannel.h"
-#include "wtf/Compiler.h"
+#include "platform/inspector_protocol/Platform.h"
#include <v8.h>
namespace blink {
-class PLATFORM_EXPORT V8InspectorSessionClient : WTF_NON_EXPORTED_BASE(public protocol::FrontendChannel)
+class PLATFORM_EXPORT V8InspectorSessionClient
{
public:
- ~V8InspectorSessionClient() override { }
+ virtual ~V8InspectorSessionClient() { }
virtual void startInstrumenting() = 0;
virtual void stopInstrumenting() = 0;
virtual void resumeStartup() = 0;
@@ -27,5 +26,4 @@ public:
} // namespace blink
-
#endif // V8InspectorSessionClient_h

Powered by Google App Engine
This is Rietveld 408576698