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

Unified Diff: content/browser/renderer_host/render_widget_host_impl.cc

Issue 2629243002: content: Remove blimp compositing dependencies. (Closed)
Patch Set: .. Created 3 years, 11 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: content/browser/renderer_host/render_widget_host_impl.cc
diff --git a/content/browser/renderer_host/render_widget_host_impl.cc b/content/browser/renderer_host/render_widget_host_impl.cc
index 5e57094a1ac9f7a891f91b77b7cf643fce0768ed..235b2565382e19f7b81b4a49fb38f45ff263f7ec 100644
--- a/content/browser/renderer_host/render_widget_host_impl.cc
+++ b/content/browser/renderer_host/render_widget_host_impl.cc
@@ -547,8 +547,6 @@ bool RenderWidgetHostImpl::OnMessageReceived(const IPC::Message &msg) {
OnImeCompositionRangeChanged)
IPC_MESSAGE_HANDLER(ViewHostMsg_DidFirstPaintAfterLoad,
OnFirstPaintAfterLoad)
- IPC_MESSAGE_HANDLER(ViewHostMsg_ForwardCompositorProto,
- OnForwardCompositorProto)
IPC_MESSAGE_HANDLER(ViewHostMsg_SetNeedsBeginFrames, OnSetNeedsBeginFrames)
IPC_MESSAGE_HANDLER(ViewHostMsg_FocusedNodeTouched, OnFocusedNodeTouched)
IPC_MESSAGE_HANDLER(DragHostMsg_StartDragging, OnStartDragging)
@@ -1343,12 +1341,6 @@ void RenderWidgetHostImpl::GetScreenInfo(ScreenInfo* result) {
input_router_->SetDeviceScaleFactor(result->device_scale_factor);
}
-void RenderWidgetHostImpl::HandleCompositorProto(
- const std::vector<uint8_t>& proto) {
- DCHECK(!proto.empty());
- Send(new ViewMsg_HandleCompositorProto(GetRoutingID(), proto));
-}
-
void RenderWidgetHostImpl::DragTargetDragEnter(
const DropData& drop_data,
const gfx::Point& client_pt,
@@ -1476,12 +1468,6 @@ void RenderWidgetHostImpl::OnSelectionBoundsChanged(
}
}
-void RenderWidgetHostImpl::OnForwardCompositorProto(
- const std::vector<uint8_t>& proto) {
- if (delegate_)
- delegate_->ForwardCompositorProto(this, proto);
-}
-
void RenderWidgetHostImpl::OnSetNeedsBeginFrames(bool needs_begin_frames) {
if (needs_begin_frames_ == needs_begin_frames)
return;
« no previous file with comments | « content/browser/renderer_host/render_widget_host_impl.h ('k') | content/browser/web_contents/web_contents_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698