| Index: Source/core/inspector/InspectorTimelineAgent.h
|
| diff --git a/Source/core/inspector/InspectorTimelineAgent.h b/Source/core/inspector/InspectorTimelineAgent.h
|
| index 74214f6a669338424044dcabb1469823e2b6210e..404ddde8afbf7c903ad54a9bbe9df089d7e323f1 100644
|
| --- a/Source/core/inspector/InspectorTimelineAgent.h
|
| +++ b/Source/core/inspector/InspectorTimelineAgent.h
|
| @@ -50,12 +50,12 @@ public:
|
| return adoptPtrWillBeNoop(new InspectorTimelineAgent());
|
| }
|
|
|
| - virtual ~InspectorTimelineAgent();
|
| + ~InspectorTimelineAgent() override;
|
|
|
| - virtual void enable(ErrorString*) override;
|
| - virtual void disable(ErrorString*) override;
|
| - virtual void start(ErrorString*, const int* maxCallStackDepth, const bool* bufferEvents, const String* liveEvents, const bool* includeCounters, const bool* includeGPUEvents) override;
|
| - virtual void stop(ErrorString*) override;
|
| + void enable(ErrorString*) override;
|
| + void disable(ErrorString*) override;
|
| + void start(ErrorString*, const int* maxCallStackDepth, const bool* bufferEvents, const String* liveEvents, const bool* includeCounters, const bool* includeGPUEvents) override;
|
| + void stop(ErrorString*) override;
|
|
|
| private:
|
| InspectorTimelineAgent();
|
|
|