Index: content/renderer/render_view_impl.cc |
diff --git a/content/renderer/render_view_impl.cc b/content/renderer/render_view_impl.cc |
index d9284aeb6bd1ea043018fc97698d5d66fd36d02a..092d8b9165dd88a4fcccadd719f02781adb42a0a 100644 |
--- a/content/renderer/render_view_impl.cc |
+++ b/content/renderer/render_view_impl.cc |
@@ -3250,8 +3250,7 @@ void RenderViewImpl::DidFlushPaint() { |
if (data->did_first_visually_non_empty_layout() && |
!data->did_first_visually_non_empty_paint()) { |
data->set_did_first_visually_non_empty_paint(true); |
- Send(new ViewHostMsg_DidFirstVisuallyNonEmptyPaint(routing_id_, |
- page_id_)); |
+ Send(new ViewHostMsg_DidFirstVisuallyNonEmptyPaint(routing_id_)); |
} |
// TODO(jar): The following code should all be inside a method, probably in |
@@ -4131,7 +4130,7 @@ void RenderViewImpl::DidCommitCompositorFrame() { |
void RenderViewImpl::SendUpdateFaviconURL(const std::vector<FaviconURL>& urls) { |
if (!urls.empty()) |
- Send(new ViewHostMsg_UpdateFaviconURL(routing_id_, page_id_, urls)); |
+ Send(new ViewHostMsg_UpdateFaviconURL(routing_id_, urls)); |
} |
void RenderViewImpl::DidStopLoadingIcons() { |