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

Unified Diff: Source/core/frame/Location.h

Issue 334283004: Rename DOMWindow to LocalDOMWindow (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 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/frame/LocalFrame.cpp ('k') | Source/core/frame/Location.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/Location.h
diff --git a/Source/core/frame/Location.h b/Source/core/frame/Location.h
index 2e09edcf228021ae400240fe4c28c988f6efb9d8..d029b9727d01398b2b47b0874474228d46c471c8 100644
--- a/Source/core/frame/Location.h
+++ b/Source/core/frame/Location.h
@@ -38,7 +38,7 @@
namespace WebCore {
-class DOMWindow;
+class LocalDOMWindow;
class ExceptionState;
class LocalFrame;
class KURL;
@@ -50,26 +50,26 @@ public:
return adoptRefWillBeNoop(new Location(frame));
}
- void setHref(DOMWindow* callingWindow, DOMWindow* enteredWindow, const String&);
+ void setHref(LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow, const String&);
String href() const;
- void assign(DOMWindow* callingWindow, DOMWindow* enteredWindow, const String&);
- void replace(DOMWindow* callingWindow, DOMWindow* enteredWindow, const String&);
- void reload(DOMWindow* callingWindow);
+ void assign(LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow, const String&);
+ void replace(LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow, const String&);
+ void reload(LocalDOMWindow* callingWindow);
- void setProtocol(DOMWindow* callingWindow, DOMWindow* enteredWindow, const String&, ExceptionState&);
+ void setProtocol(LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow, const String&, ExceptionState&);
String protocol() const;
- void setHost(DOMWindow* callingWindow, DOMWindow* enteredWindow, const String&);
+ void setHost(LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow, const String&);
String host() const;
- void setHostname(DOMWindow* callingWindow, DOMWindow* enteredWindow, const String&);
+ void setHostname(LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow, const String&);
String hostname() const;
- void setPort(DOMWindow* callingWindow, DOMWindow* enteredWindow, const String&);
+ void setPort(LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow, const String&);
String port() const;
- void setPathname(DOMWindow* callingWindow, DOMWindow* enteredWindow, const String&);
+ void setPathname(LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow, const String&);
String pathname() const;
- void setSearch(DOMWindow* callingWindow, DOMWindow* enteredWindow, const String&);
+ void setSearch(LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow, const String&);
String search() const;
- void setHash(DOMWindow* callingWindow, DOMWindow* enteredWindow, const String&);
+ void setHash(LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow, const String&);
String hash() const;
String origin() const;
@@ -80,7 +80,7 @@ public:
private:
explicit Location(LocalFrame*);
- void setLocation(const String&, DOMWindow* callingWindow, DOMWindow* enteredWindow);
+ void setLocation(const String&, LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow);
const KURL& url() const;
};
« no previous file with comments | « Source/core/frame/LocalFrame.cpp ('k') | Source/core/frame/Location.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698