| 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 e4775ffc16085ce1aa7526f17ee8caa4c0a2c494..fc4998630e118eb13f91c1f7de5b7bbcfcc9e68f 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/public/V8InspectorSessionClient.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/public/V8InspectorSessionClient.h
|
| @@ -6,14 +6,17 @@
|
| #define V8InspectorSessionClient_h
|
|
|
| #include "platform/PlatformExport.h"
|
| +#include "platform/inspector_protocol/FrontendChannel.h"
|
| +#include "wtf/Compiler.h"
|
|
|
| #include <v8.h>
|
|
|
| namespace blink {
|
|
|
| -class PLATFORM_EXPORT V8InspectorSessionClient {
|
| +class PLATFORM_EXPORT V8InspectorSessionClient : WTF_NON_EXPORTED_BASE(public protocol::FrontendChannel)
|
| +{
|
| public:
|
| - virtual ~V8InspectorSessionClient() { }
|
| + ~V8InspectorSessionClient() override { }
|
| virtual void startInstrumenting() = 0;
|
| virtual void stopInstrumenting() = 0;
|
| virtual void resumeStartup() = 0;
|
|
|