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

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

Issue 683013002: Extract a DOMWindow interface from LocalDOMWindow and use it in the idl. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix incorrect assumption Created 6 years, 1 month 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 fb230213aff8c1cd37710f5f58dd3bf03ced12ab..58c673838e5726a07f57503840640c1fce2e6808 100644
--- a/Source/core/page/DOMWindowPagePopup.h
+++ b/Source/core/page/DOMWindowPagePopup.h
@@ -31,19 +31,19 @@
#ifndef DOMWindowPagePopup_h
#define DOMWindowPagePopup_h
+#include "core/frame/LocalDOMWindow.h"
#include "platform/Supplementable.h"
#include "platform/heap/Handle.h"
namespace blink {
-class LocalDOMWindow;
class PagePopupClient;
class PagePopupController;
class DOMWindowPagePopup final : public NoBaseWillBeGarbageCollected<DOMWindowPagePopup>, public WillBeHeapSupplement<LocalDOMWindow> {
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DOMWindowPagePopup);
public:
- static PagePopupController* pagePopupController(LocalDOMWindow&);
+ static PagePopupController* pagePopupController(DOMWindow&);
static void install(LocalDOMWindow&, PagePopupClient*);
static void uninstall(LocalDOMWindow&);
DECLARE_EMPTY_VIRTUAL_DESTRUCTOR_WILL_BE_REMOVED(DOMWindowPagePopup);

Powered by Google App Engine
This is Rietveld 408576698