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

Unified Diff: Source/core/workers/WorkerLocation.h

Issue 631133003: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/workers (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/workers/WorkerInspectorProxy.h ('k') | Source/core/workers/WorkerMessagingProxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/workers/WorkerLocation.h
diff --git a/Source/core/workers/WorkerLocation.h b/Source/core/workers/WorkerLocation.h
index 1bc902d5b7827872bb211f097e40c44136c178f6..694400c16732bc93e267847bba185c42bf984670 100644
--- a/Source/core/workers/WorkerLocation.h
+++ b/Source/core/workers/WorkerLocation.h
@@ -38,7 +38,7 @@
namespace blink {
-class WorkerLocation FINAL : public RefCountedWillBeGarbageCollectedFinalized<WorkerLocation>, public ScriptWrappable, public DOMURLUtilsReadOnly {
+class WorkerLocation final : public RefCountedWillBeGarbageCollectedFinalized<WorkerLocation>, public ScriptWrappable, public DOMURLUtilsReadOnly {
DEFINE_WRAPPERTYPEINFO();
public:
static PassRefPtrWillBeRawPtr<WorkerLocation> create(const KURL& url)
@@ -46,8 +46,8 @@ public:
return adoptRefWillBeNoop(new WorkerLocation(url));
}
- virtual KURL url() const OVERRIDE { return m_url; }
- virtual String input() const OVERRIDE
+ virtual KURL url() const override { return m_url; }
+ virtual String input() const override
{
ASSERT_NOT_REACHED();
return String();
« no previous file with comments | « Source/core/workers/WorkerInspectorProxy.h ('k') | Source/core/workers/WorkerMessagingProxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698