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

Unified Diff: Source/core/html/PublicURLManager.h

Issue 635793002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/html (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/html/PluginDocument.cpp ('k') | Source/core/html/RadioNodeList.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/PublicURLManager.h
diff --git a/Source/core/html/PublicURLManager.h b/Source/core/html/PublicURLManager.h
index 9a03e738f15e7036c1b19ebef8182bef14265c3c..1391fffd4b8b4870eddf7e1db5f8c374342fc764 100644
--- a/Source/core/html/PublicURLManager.h
+++ b/Source/core/html/PublicURLManager.h
@@ -40,7 +40,7 @@ class SecurityOrigin;
class URLRegistry;
class URLRegistrable;
-class PublicURLManager FINAL : public ActiveDOMObject {
+class PublicURLManager final : public ActiveDOMObject {
WTF_MAKE_FAST_ALLOCATED;
public:
static PassOwnPtr<PublicURLManager> create(ExecutionContext*);
@@ -50,7 +50,7 @@ public:
void revoke(const String& uuid);
// ActiveDOMObject interface.
- virtual void stop() OVERRIDE;
+ virtual void stop() override;
private:
PublicURLManager(ExecutionContext*);
« no previous file with comments | « Source/core/html/PluginDocument.cpp ('k') | Source/core/html/RadioNodeList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698