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

Unified Diff: Source/core/page/DOMWindowPagePopup.h

Issue 1087743002: Support multiple displays for PagePopup (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fixed IntRect inclusion Created 5 years, 8 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
Index: Source/core/page/DOMWindowPagePopup.h
diff --git a/Source/core/page/DOMWindowPagePopup.h b/Source/core/page/DOMWindowPagePopup.h
index 4fc796283ad86cbe88192fca6b0f14bfc8f180ea..6ab7684f1def3b78f3436bda3e994243e16e54c5 100644
--- a/Source/core/page/DOMWindowPagePopup.h
+++ b/Source/core/page/DOMWindowPagePopup.h
@@ -38,6 +38,7 @@
namespace blink {
+class PagePopup;
class PagePopupClient;
class PagePopupController;
@@ -45,14 +46,14 @@ class CORE_EXPORT DOMWindowPagePopup final : public NoBaseWillBeGarbageCollected
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DOMWindowPagePopup);
public:
static PagePopupController* pagePopupController(DOMWindow&);
- static void install(LocalDOMWindow&, PagePopupClient*);
+ static void install(LocalDOMWindow&, PagePopup&, PagePopupClient*);
static void uninstall(LocalDOMWindow&);
DECLARE_EMPTY_VIRTUAL_DESTRUCTOR_WILL_BE_REMOVED(DOMWindowPagePopup);
DECLARE_TRACE();
private:
- explicit DOMWindowPagePopup(PagePopupClient*);
+ DOMWindowPagePopup(PagePopup&, PagePopupClient*);
static const char* supplementName();
RefPtrWillBeMember<PagePopupController> m_controller;
« no previous file with comments | « LayoutTests/platform/win/fast/forms/select/popup-menu-position-expected.txt ('k') | Source/core/page/DOMWindowPagePopup.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698