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

Unified Diff: Source/core/inspector/InspectorPageAgent.cpp

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: 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
Index: Source/core/inspector/InspectorPageAgent.cpp
diff --git a/Source/core/inspector/InspectorPageAgent.cpp b/Source/core/inspector/InspectorPageAgent.cpp
index 453f691c3511a5789eaeb837179ae6732be1a986..bd3ae23ec2fd7ee8d0834e22115ba2db25c8d0dc 100644
--- a/Source/core/inspector/InspectorPageAgent.cpp
+++ b/Source/core/inspector/InspectorPageAgent.cpp
@@ -146,11 +146,11 @@ static float calculateFontScaleFactor(int width, int height, float deviceScaleFa
}
-class InspectorPageAgent::GetResourceContentLoadListener FINAL : public VoidCallback {
+class InspectorPageAgent::GetResourceContentLoadListener final : public VoidCallback {
public:
GetResourceContentLoadListener(InspectorPageAgent*, const String& frameId, const String& url, PassRefPtrWillBeRawPtr<GetResourceContentCallback>);
- virtual void trace(Visitor*) OVERRIDE;
- virtual void handleEvent() OVERRIDE;
+ virtual void trace(Visitor*) override;
+ virtual void handleEvent() override;
private:
RawPtrWillBeMember<InspectorPageAgent> m_pageAgent;
String m_frameId;

Powered by Google App Engine
This is Rietveld 408576698