Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(926)

Unified Diff: Source/core/inspector/InspectorTimelineAgent.h

Issue 638553002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed Nits Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/inspector/InspectorStyleSheet.cpp ('k') | Source/core/inspector/InspectorTimelineAgent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorTimelineAgent.h
diff --git a/Source/core/inspector/InspectorTimelineAgent.h b/Source/core/inspector/InspectorTimelineAgent.h
index 84b2c50e48c0806da2798ae9c41a8f0398952382..e7a1417aeb020be9fa4d4304c0699a027eaa20f9 100644
--- a/Source/core/inspector/InspectorTimelineAgent.h
+++ b/Source/core/inspector/InspectorTimelineAgent.h
@@ -88,7 +88,7 @@ class XMLHttpRequest;
typedef String ErrorString;
-class InspectorTimelineAgent FINAL
+class InspectorTimelineAgent final
: public InspectorBaseAgent<InspectorTimelineAgent>
, public ScriptGCEventListener
, public InspectorBackendDispatcher::TimelineCommandHandler
@@ -120,16 +120,16 @@ public:
}
virtual ~InspectorTimelineAgent();
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) 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;
- 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;
+ 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 setLayerTreeId(int layerTreeId) { m_layerTreeId = layerTreeId; }
int id() const { return m_id; }
@@ -219,13 +219,13 @@ public:
void processGPUEvent(const GPUEvent&);
// ScriptGCEventListener methods.
- virtual void didGC(double, double, size_t) OVERRIDE;
+ virtual void didGC(double, double, size_t) override;
// PlatformInstrumentationClient methods.
- virtual void willDecodeImage(const String& imageType) OVERRIDE;
- virtual void didDecodeImage() OVERRIDE;
- virtual void willResizeImage(bool shouldCache) OVERRIDE;
- virtual void didResizeImage() OVERRIDE;
+ virtual void willDecodeImage(const String& imageType) override;
+ virtual void didDecodeImage() override;
+ virtual void willResizeImage(bool shouldCache) override;
+ virtual void didResizeImage() override;
private:
« no previous file with comments | « Source/core/inspector/InspectorStyleSheet.cpp ('k') | Source/core/inspector/InspectorTimelineAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698