Index: Source/core/page/PagePopupClient.h |
diff --git a/Source/core/page/PagePopupClient.h b/Source/core/page/PagePopupClient.h |
index e67ec48da54441c8a473e3e173811aa436d4e81e..5c42d018a3f1664612cd90f97e9cd5d5d405fa3c 100644 |
--- a/Source/core/page/PagePopupClient.h |
+++ b/Source/core/page/PagePopupClient.h |
@@ -38,6 +38,7 @@ |
namespace blink { |
+class Document; |
class Element; |
class Locale; |
@@ -52,6 +53,9 @@ public: |
// - window.setValueAndClosePopup(number, string). |
virtual void writeDocument(SharedBuffer*) = 0; |
+ // This is called after the document is ready to do additionary setup. |
+ virtual void didWriteDocument(Document*) = 0; |
tkent
2014/12/16 05:42:39
nit: I think the argument is never null. So, it
keishi
2014/12/16 12:21:03
Done.
|
+ |
virtual Element& ownerElement() = 0; |
// Returns a Locale object associated to the client. |
virtual Locale& locale() = 0; |