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

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

Issue 17648006: Rename WorkerContext to WorkerGlobalScope (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase on master Created 7 years, 6 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/WorkerGlobalScope.cpp ('k') | Source/core/workers/WorkerGlobalScopeProxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/workers/WorkerGlobalScope.idl
diff --git a/Source/core/workers/WorkerContext.idl b/Source/core/workers/WorkerGlobalScope.idl
similarity index 86%
rename from Source/core/workers/WorkerContext.idl
rename to Source/core/workers/WorkerGlobalScope.idl
index 9c4ff2b27ffba21368093bfe629b76dd082dd3ea..9d75567781a149c0aac4b89c487f47f134bc0a16 100644
--- a/Source/core/workers/WorkerContext.idl
+++ b/Source/core/workers/WorkerGlobalScope.idl
@@ -29,17 +29,17 @@
EventTarget,
CustomToV8,
DoNotGenerateWrap
-] interface WorkerContext {
+] interface WorkerGlobalScope {
// WorkerGlobalScope
- [Replaceable] readonly attribute WorkerContext self;
- [Replaceable] readonly attribute WorkerLocation location;
+ [Replaceable] readonly attribute WorkerGlobalScope self;
+ [Replaceable] readonly attribute WorkerLocation location;
void close();
- attribute EventListener onerror;
+ attribute EventListener onerror;
// WorkerUtils
[Custom] void importScripts(/*[Variadic] in DOMString urls */);
- [Replaceable] readonly attribute WorkerNavigator navigator;
+ [Replaceable] readonly attribute WorkerNavigator navigator;
// EventTarget interface
void addEventListener(DOMString type,
@@ -54,5 +54,5 @@
attribute URLConstructor webkitURL; // FIXME: deprecate this.
};
-WorkerContext implements WindowTimers;
+WorkerGlobalScope implements WindowTimers;
« no previous file with comments | « Source/core/workers/WorkerGlobalScope.cpp ('k') | Source/core/workers/WorkerGlobalScopeProxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698