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

Unified Diff: Source/bindings/v8/ScriptController.h

Issue 17031006: Rename DOMWindow interface to Window (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/bindings/v8/PageScriptDebugServer.cpp ('k') | Source/bindings/v8/ScriptController.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/v8/ScriptController.h
diff --git a/Source/bindings/v8/ScriptController.h b/Source/bindings/v8/ScriptController.h
index ee68dd93d8adc47041e0e7204ce19739d31169c4..c2c8723a933010f04415625f15cce5376b9fa5f5 100644
--- a/Source/bindings/v8/ScriptController.h
+++ b/Source/bindings/v8/ScriptController.h
@@ -54,7 +54,7 @@ class KURL;
class ScriptSourceCode;
class ScriptState;
class SecurityOrigin;
-class V8DOMWindowShell;
+class V8WindowShell;
class Widget;
typedef WTF::Vector<v8::Extension*> V8Extensions;
@@ -70,8 +70,8 @@ public:
~ScriptController();
bool initializeMainWorld();
- V8DOMWindowShell* windowShell(DOMWrapperWorld*);
- V8DOMWindowShell* existingWindowShell(DOMWrapperWorld*);
+ V8WindowShell* windowShell(DOMWrapperWorld*);
+ V8WindowShell* existingWindowShell(DOMWrapperWorld*);
ScriptValue executeScript(const ScriptSourceCode&);
ScriptValue executeScript(const String& script, bool forceUserGesture = false);
@@ -159,7 +159,7 @@ public:
static int contextDebugId(v8::Handle<v8::Context>);
private:
- typedef HashMap<int, OwnPtr<V8DOMWindowShell> > IsolatedWorldMap;
+ typedef HashMap<int, OwnPtr<V8WindowShell> > IsolatedWorldMap;
void clearForClose(bool destroyGlobal);
@@ -167,7 +167,7 @@ private:
const String* m_sourceURL;
v8::Isolate* m_isolate;
- OwnPtr<V8DOMWindowShell> m_windowShell;
+ OwnPtr<V8WindowShell> m_windowShell;
IsolatedWorldMap m_isolatedWorlds;
bool m_paused;
« no previous file with comments | « Source/bindings/v8/PageScriptDebugServer.cpp ('k') | Source/bindings/v8/ScriptController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698