| 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
|
|
|