| 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();
|
|
|