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

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 browser-side binding Created 4 years, 3 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 fa340410fbc87b776bcd4642355bce29f66d3da1..7f12405bba9c0e73fe7d60e4a11f27829c366b41 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;
@@ -66,7 +67,7 @@ public:
const IntSize& initialViewSize = IntSize(),
Page::PageClients* = 0,
FrameLoaderClient* = nullptr,
- FrameSettingOverrideFunction = nullptr);
+ FrameSettingOverrideFunction = nullptr, InterfaceProvider* = nullptr);
~DummyPageHolder();
Page& page() const;
@@ -75,7 +76,7 @@ public:
Document& document() const;
private:
- DummyPageHolder(const IntSize& initialViewSize, Page::PageClients*, FrameLoaderClient*, FrameSettingOverrideFunction settingOverrider);
+ DummyPageHolder(const IntSize& initialViewSize, Page::PageClients*, FrameLoaderClient*, FrameSettingOverrideFunction settingOverrider, InterfaceProvider* = nullptr);
Persistent<Page> m_page;
Persistent<LocalFrame> m_frame;

Powered by Google App Engine
This is Rietveld 408576698