Chromium Code Reviews| Index: Source/core/page/PagePopup.h |
| diff --git a/Source/core/page/PagePopup.h b/Source/core/page/PagePopup.h |
| index 5ade9e3072d3244d8ed3e11056dc889add027e48..f5cb9e76c4324156ea78202da6acbe88179c0219 100644 |
| --- a/Source/core/page/PagePopup.h |
| +++ b/Source/core/page/PagePopup.h |
| @@ -31,6 +31,8 @@ |
| #ifndef PagePopup_h |
| #define PagePopup_h |
| +#include "wtf/text/WTFString.h" |
|
tkent
2014/12/15 09:26:04
Use wtf/Forward.h instead of WTFString.h
keishi
2014/12/16 03:53:24
Done.
|
| + |
| namespace blink { |
| class AXObject; |
| @@ -40,6 +42,7 @@ class AXObject; |
| class PagePopup { |
| public: |
| virtual AXObject* rootAXObject() = 0; |
| + virtual void postMessage(const String& message) = 0; |
| protected: |
| virtual ~PagePopup() { } |