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

Unified Diff: content/renderer/render_widget.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
« no previous file with comments | « content/renderer/render_widget.h ('k') | content/test/fake_compositor_dependencies.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_widget.cc
diff --git a/content/renderer/render_widget.cc b/content/renderer/render_widget.cc
index 7bd31d95c1be9c0ab7fa28da8c0be16ffc5b5c52..6e1c484203cee876e71d7053fcf711f65a36922d 100644
--- a/content/renderer/render_widget.cc
+++ b/content/renderer/render_widget.cc
@@ -624,7 +624,6 @@ bool RenderWidget::OnMessageReceived(const IPC::Message& message) {
OnWaitNextFrameForTests)
IPC_MESSAGE_HANDLER(InputMsg_RequestCompositionUpdate,
OnRequestCompositionUpdate)
- IPC_MESSAGE_HANDLER(ViewMsg_HandleCompositorProto, OnHandleCompositorProto)
IPC_MESSAGE_HANDLER(DragMsg_TargetDragEnter, OnDragTargetDragEnter)
IPC_MESSAGE_HANDLER(DragMsg_TargetDragOver, OnDragTargetDragOver)
IPC_MESSAGE_HANDLER(DragMsg_TargetDragLeave, OnDragTargetDragLeave)
@@ -910,10 +909,6 @@ void RenderWidget::DidReceiveCompositorFrameAck() {
need_update_rect_for_auto_resize_ = false;
}
-void RenderWidget::ForwardCompositorProto(const std::vector<uint8_t>& proto) {
- Send(new ViewHostMsg_ForwardCompositorProto(routing_id_, proto));
-}
-
bool RenderWidget::IsClosing() const {
return host_closing_;
}
@@ -1672,11 +1667,6 @@ void RenderWidget::OnSetViewportIntersection(
}
}
-void RenderWidget::OnHandleCompositorProto(const std::vector<uint8_t>& proto) {
- if (compositor_)
- compositor_->OnHandleCompositorProto(proto);
-}
-
void RenderWidget::OnDragTargetDragEnter(
const std::vector<DropData::Metadata>& drop_meta_data,
const gfx::Point& client_point,
« no previous file with comments | « content/renderer/render_widget.h ('k') | content/test/fake_compositor_dependencies.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698