Index: Source/core/inspector/InspectorTracingAgent.h |
diff --git a/Source/core/inspector/InspectorTracingAgent.h b/Source/core/inspector/InspectorTracingAgent.h |
index 17f41a9816ff39d1470a60b3003d4c96bd5b7498..8469d18f093876282a12f3d7f98bb77005d7f3d5 100644 |
--- a/Source/core/inspector/InspectorTracingAgent.h |
+++ b/Source/core/inspector/InspectorTracingAgent.h |
@@ -17,7 +17,7 @@ namespace blink { |
class InspectorClient; |
class InspectorWorkerAgent; |
-class InspectorTracingAgent FINAL |
+class InspectorTracingAgent final |
: public InspectorBaseAgent<InspectorTracingAgent> |
, public InspectorBackendDispatcher::TracingCommandHandler { |
WTF_MAKE_NONCOPYABLE(InspectorTracingAgent); |
@@ -28,11 +28,11 @@ public: |
} |
// Base agent methods. |
- virtual void restore() OVERRIDE; |
- virtual void setFrontend(InspectorFrontend*) OVERRIDE; |
+ virtual void restore() override; |
+ virtual void setFrontend(InspectorFrontend*) override; |
// Protocol method implementations. |
- virtual void start(ErrorString*, const String& categoryFilter, const String&, const double*, PassRefPtrWillBeRawPtr<StartCallback>) OVERRIDE; |
+ virtual void start(ErrorString*, const String& categoryFilter, const String&, const double*, PassRefPtrWillBeRawPtr<StartCallback>) override; |
virtual void end(ErrorString*, PassRefPtrWillBeRawPtr<EndCallback>); |
// Methods for other agents to use. |