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

Unified Diff: content/renderer/render_widget_unittest.cc

Issue 2404473002: Build fix for #675 (Closed)
Patch Set: 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_widget_unittest.cc
diff --git a/content/renderer/render_widget_unittest.cc b/content/renderer/render_widget_unittest.cc
index cb18782716b8ac0fccaea4197fe9c62504710961..8b2bd928717910d5ded46a8f81e01cbeabf74517 100644
--- a/content/renderer/render_widget_unittest.cc
+++ b/content/renderer/render_widget_unittest.cc
@@ -374,11 +374,11 @@ class PopupRenderWidget : public RenderWidget {
explicit PopupRenderWidget(CompositorDependencies* compositor_deps)
: RenderWidget(compositor_deps,
blink::WebPopupTypePage,
- ScreenInfo(),
+ blink::WebScreenInfo(),
false,
false,
false) {
- webwidget_internal_ = &mock_webwidget_;
+ webwidget_ = &mock_webwidget_;
// A RenderWidget is not fully initialized until it has a routing ID.
SetRoutingID(1);
did_show_ = true;
@@ -393,7 +393,7 @@ class PopupRenderWidget : public RenderWidget {
const blink::WebDeviceEmulationParams&) override {}
protected:
- ~PopupRenderWidget() override { webwidget_internal_ = nullptr; }
+ ~PopupRenderWidget() override { webwidget_ = nullptr; }
bool Send(IPC::Message* msg) override {
sink_.OnMessageReceived(*msg);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698