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

Unified Diff: Source/core/frame/Navigator.h

Issue 635853002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/frame (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
« no previous file with comments | « Source/core/frame/Location.h ('k') | Source/core/frame/PinchViewport.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/Navigator.h
diff --git a/Source/core/frame/Navigator.h b/Source/core/frame/Navigator.h
index b1a47856e3c2246841408e7d491bfc6d484876df..6ff6c952869531fd1711ea556db0ae89986f65c1 100644
--- a/Source/core/frame/Navigator.h
+++ b/Source/core/frame/Navigator.h
@@ -41,7 +41,7 @@ class LocalFrame;
typedef int ExceptionCode;
-class Navigator FINAL
+class Navigator final
: public RefCountedWillBeGarbageCollectedFinalized<Navigator>
, public NavigatorCPU
, public NavigatorID
@@ -69,15 +69,15 @@ public:
String vendor() const;
String vendorSub() const;
- virtual String userAgent() const OVERRIDE;
+ virtual String userAgent() const override;
// Relinquishes the storage lock, if one exists.
void getStorageUpdates();
// NavigatorLanguage
- virtual Vector<String> languages() OVERRIDE;
+ virtual Vector<String> languages() override;
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
explicit Navigator(LocalFrame*);
« no previous file with comments | « Source/core/frame/Location.h ('k') | Source/core/frame/PinchViewport.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698