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

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: 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..fa7fe17e6333582263bf898d240ec2783886cbaf 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*);
+ explicit DOMWindowPagePopup(PagePopup*, PagePopupClient*);
tkent 2015/04/14 11:09:32 |explicit| is unnecessary.
keishi 2015/04/14 11:17:45 Done.
static const char* supplementName();
RefPtrWillBeMember<PagePopupController> m_controller;

Powered by Google App Engine
This is Rietveld 408576698