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

Unified Diff: Source/core/events/WindowEventContext.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/events/UIEvent.h ('k') | Source/core/events/WindowEventContext.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/WindowEventContext.h
diff --git a/Source/core/events/WindowEventContext.h b/Source/core/events/WindowEventContext.h
index a347e844f8a921fde1fc312145dcba09772a7ef1..976c1756f6ff4c5a10cec3f6a75036007387b159 100644
--- a/Source/core/events/WindowEventContext.h
+++ b/Source/core/events/WindowEventContext.h
@@ -32,7 +32,7 @@
namespace WebCore {
-class DOMWindow;
+class LocalDOMWindow;
class EventTarget;
class Event;
class Node;
@@ -43,16 +43,16 @@ class WindowEventContext {
public:
WindowEventContext(Event*, PassRefPtrWillBeRawPtr<Node>, const NodeEventContext*);
- DOMWindow* window() const;
+ LocalDOMWindow* window() const;
EventTarget* target() const;
bool handleLocalEvents(Event* event);
private:
- RefPtrWillBeMember<DOMWindow> m_window;
+ RefPtrWillBeMember<LocalDOMWindow> m_window;
RefPtrWillBeMember<EventTarget> m_target;
};
-inline DOMWindow* WindowEventContext::window() const
+inline LocalDOMWindow* WindowEventContext::window() const
{
return m_window.get();
}
« no previous file with comments | « Source/core/events/UIEvent.h ('k') | Source/core/events/WindowEventContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698