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

Unified Diff: third_party/WebKit/Source/core/frame/DOMWindow.h

Issue 2681233004: Make External per-window rather than a static Persistent. (Closed)
Patch Set: Created 3 years, 10 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 | « no previous file | third_party/WebKit/Source/core/frame/DOMWindow.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/frame/DOMWindow.h
diff --git a/third_party/WebKit/Source/core/frame/DOMWindow.h b/third_party/WebKit/Source/core/frame/DOMWindow.h
index 128b40a608e5eb4745d36691ce2448d0bda04315..b019f587efcba19d8f779eca14881f0c18724107 100644
--- a/third_party/WebKit/Source/core/frame/DOMWindow.h
+++ b/third_party/WebKit/Source/core/frame/DOMWindow.h
@@ -203,7 +203,7 @@ class CORE_EXPORT DOMWindow : public EventTargetWithInlineData,
// Obsolete APIs
void captureEvents() {}
void releaseEvents() {}
- External* external() const;
+ External* external();
// FIXME: This handles both window[index] and window.frames[index]. However,
// the spec exposes window.frames[index] across origins but not
@@ -268,6 +268,7 @@ class CORE_EXPORT DOMWindow : public EventTargetWithInlineData,
private:
mutable Member<Location> m_location;
+ Member<External> m_external;
};
} // namespace blink
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/frame/DOMWindow.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698