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

Unified Diff: Source/core/loader/PrerenderHandle.h

Issue 638503003: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/loader (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/loader/PingLoader.h ('k') | Source/core/loader/ProgressTracker.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/loader/PrerenderHandle.h
diff --git a/Source/core/loader/PrerenderHandle.h b/Source/core/loader/PrerenderHandle.h
index 3ba13539e96a4b060b0ce20d910c8069891b764c..a51d3a8e3b028687a8379065994e6e0b4130f150 100644
--- a/Source/core/loader/PrerenderHandle.h
+++ b/Source/core/loader/PrerenderHandle.h
@@ -43,7 +43,7 @@ class Document;
class Prerender;
class PrerenderClient;
-class PrerenderHandle FINAL : public DocumentLifecycleObserver {
+class PrerenderHandle final : public DocumentLifecycleObserver {
WTF_MAKE_NONCOPYABLE(PrerenderHandle);
public:
static PassOwnPtr<PrerenderHandle> create(Document&, PrerenderClient*, const KURL&, unsigned prerenderRelTypes);
@@ -54,7 +54,7 @@ public:
const KURL& url() const;
// From DocumentLifecycleObserver:
- virtual void documentWasDetached() OVERRIDE;
+ virtual void documentWasDetached() override;
private:
PrerenderHandle(Document&, PassRefPtr<Prerender>);
« no previous file with comments | « Source/core/loader/PingLoader.h ('k') | Source/core/loader/ProgressTracker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698