Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / testing / DummyPageHolder.h
index 6f2df5d..2422690 100644 (file)
@@ -40,7 +40,7 @@
 #include "wtf/OwnPtr.h"
 #include "wtf/PassOwnPtr.h"
 
-namespace WebCore {
+namespace blink {
 
 class Document;
 class LocalFrame;
@@ -60,7 +60,7 @@ class DummyPageHolder {
     WTF_MAKE_NONCOPYABLE(DummyPageHolder);
     WTF_MAKE_FAST_ALLOCATED;
 public:
-    static PassOwnPtr<DummyPageHolder> create(const IntSize& initialViewSize = IntSize());
+    static PassOwnPtr<DummyPageHolder> create(const IntSize& initialViewSize = IntSize(), Page::PageClients* = 0);
     ~DummyPageHolder();
 
     Page& page() const;
@@ -69,7 +69,7 @@ public:
     Document& document() const;
 
 private:
-    explicit DummyPageHolder(const IntSize& initialViewSize);
+    explicit DummyPageHolder(const IntSize& initialViewSize, Page::PageClients*);
 
     OwnPtrWillBePersistent<Page> m_page;
     RefPtr<LocalFrame> m_frame;
@@ -78,6 +78,6 @@ private:
     EmptyFrameLoaderClient m_frameLoaderClient;
 };
 
-} // namespace WebCore
+} // namespace blink
 
 #endif // DummyPageHolder_h