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

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

Issue 2378503002: Observe visibility of password inputs, for HTTP-bad phase 1 (Closed)
Patch Set: fix superclass createLayoutObject call Created 4 years, 2 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: third_party/WebKit/Source/core/testing/DummyPageHolder.h
diff --git a/third_party/WebKit/Source/core/testing/DummyPageHolder.h b/third_party/WebKit/Source/core/testing/DummyPageHolder.h
index dc6d379dc9e972221f5df1cf15f541e1788ae25c..66e9c3809beba69318ee31a52258b4d3d6ca39a6 100644
--- a/third_party/WebKit/Source/core/testing/DummyPageHolder.h
+++ b/third_party/WebKit/Source/core/testing/DummyPageHolder.h
@@ -44,6 +44,7 @@ namespace blink {
class Document;
class LocalFrame;
class FrameView;
+class InterfaceProvider;
class IntSize;
class Settings;
@@ -67,7 +68,8 @@ class DummyPageHolder {
const IntSize& initialViewSize = IntSize(),
Page::PageClients* = 0,
FrameLoaderClient* = nullptr,
- FrameSettingOverrideFunction = nullptr);
+ FrameSettingOverrideFunction = nullptr,
+ InterfaceProvider* = nullptr);
~DummyPageHolder();
Page& page() const;
@@ -79,7 +81,8 @@ class DummyPageHolder {
DummyPageHolder(const IntSize& initialViewSize,
Page::PageClients*,
FrameLoaderClient*,
- FrameSettingOverrideFunction settingOverrider);
+ FrameSettingOverrideFunction settingOverrider,
+ InterfaceProvider* = nullptr);
Persistent<Page> m_page;
Persistent<LocalFrame> m_frame;

Powered by Google App Engine
This is Rietveld 408576698