| Index: Source/core/workers/WorkerGlobalScope.h
|
| diff --git a/Source/core/workers/WorkerGlobalScope.h b/Source/core/workers/WorkerGlobalScope.h
|
| index a72bbb9e855398a38e63d980cbba38815c350620..afca046ec0c79cdb00ebd07a0defc177a32756d2 100644
|
| --- a/Source/core/workers/WorkerGlobalScope.h
|
| +++ b/Source/core/workers/WorkerGlobalScope.h
|
| @@ -65,12 +65,12 @@ namespace blink {
|
| virtual ~WorkerGlobalScope();
|
|
|
| virtual bool isWorkerGlobalScope() const OVERRIDE FINAL { return true; }
|
| + virtual bool isSharedWorkerGlobalScope() const OVERRIDE { return false; }
|
| + virtual bool isDedicatedWorkerGlobalScope() const OVERRIDE { return false; }
|
| + virtual bool isServiceWorkerGlobalScope() const OVERRIDE { return false; }
|
|
|
| virtual ExecutionContext* executionContext() const OVERRIDE FINAL;
|
|
|
| - virtual bool isSharedWorkerGlobalScope() const { return false; }
|
| - virtual bool isDedicatedWorkerGlobalScope() const { return false; }
|
| - virtual bool isServiceWorkerGlobalScope() const { return false; }
|
| virtual void countFeature(UseCounter::Feature) const;
|
| virtual void countDeprecation(UseCounter::Feature) const;
|
|
|
|
|