Index: Source/core/inspector/InspectorProfilerAgent.h |
diff --git a/Source/core/inspector/InspectorProfilerAgent.h b/Source/core/inspector/InspectorProfilerAgent.h |
index adba7bd07b716dc64e9ef590a5b37f11ab0a531e..d45f9d42c6ac82162ee0bd11de10c5bf281ab55a 100644 |
--- a/Source/core/inspector/InspectorProfilerAgent.h |
+++ b/Source/core/inspector/InspectorProfilerAgent.h |
@@ -52,26 +52,26 @@ class ScriptProfile; |
typedef String ErrorString; |
-class InspectorProfilerAgent FINAL : public InspectorBaseAgent<InspectorProfilerAgent>, public InspectorBackendDispatcher::ProfilerCommandHandler { |
+class InspectorProfilerAgent final : public InspectorBaseAgent<InspectorProfilerAgent>, public InspectorBackendDispatcher::ProfilerCommandHandler { |
WTF_MAKE_NONCOPYABLE(InspectorProfilerAgent); |
WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED; |
public: |
static PassOwnPtrWillBeRawPtr<InspectorProfilerAgent> create(InjectedScriptManager*, InspectorOverlay*); |
virtual ~InspectorProfilerAgent(); |
- virtual void trace(Visitor*) OVERRIDE; |
+ virtual void trace(Visitor*) override; |
void consoleProfile(ExecutionContext*, const String& title); |
void consoleProfileEnd(const String& title); |
- virtual void enable(ErrorString*) OVERRIDE; |
- virtual void disable(ErrorString*) OVERRIDE; |
- virtual void setSamplingInterval(ErrorString*, int) OVERRIDE; |
- virtual void start(ErrorString*) OVERRIDE; |
- virtual void stop(ErrorString*, RefPtr<TypeBuilder::Profiler::CPUProfile>&) OVERRIDE; |
+ virtual void enable(ErrorString*) override; |
+ virtual void disable(ErrorString*) override; |
+ virtual void setSamplingInterval(ErrorString*, int) override; |
+ virtual void start(ErrorString*) override; |
+ virtual void stop(ErrorString*, RefPtr<TypeBuilder::Profiler::CPUProfile>&) override; |
- virtual void setFrontend(InspectorFrontend*) OVERRIDE; |
- virtual void clearFrontend() OVERRIDE; |
- virtual void restore() OVERRIDE; |
+ virtual void setFrontend(InspectorFrontend*) override; |
+ virtual void clearFrontend() override; |
+ virtual void restore() override; |
void willProcessTask(); |
void didProcessTask(); |