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

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

Issue 424163002: Enable the WebIDL [Exposed] annotation on an interface's members. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: missed renames Created 6 years, 4 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/dom/ExecutionContextClient.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « Source/core/dom/ExecutionContextClient.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698