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

Unified Diff: Source/core/testing/DummyPageHolder.h

Issue 357603003: Add functions searching a word boundary without VisualPosition to HTMLTextFormControlElement. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Update Created 6 years, 6 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/testing/DummyPageHolder.h
diff --git a/Source/core/testing/DummyPageHolder.h b/Source/core/testing/DummyPageHolder.h
index 6f2df5d4125d6fb0ec2c1922bd2342b4c8363702..d8633ed49f15bdbf0a3539098729e4833a30f4d8 100644
--- a/Source/core/testing/DummyPageHolder.h
+++ b/Source/core/testing/DummyPageHolder.h
@@ -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;

Powered by Google App Engine
This is Rietveld 408576698