| 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 24ff901dd48668f1c2535abbbab177c40cacb89e..0a286fe235e406ba851c2462ce764a71ff5b3fe9 100644
|
| --- a/content/browser/renderer_host/render_widget_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_widget_host_impl.cc
|
| @@ -475,8 +475,6 @@ bool RenderWidgetHostImpl::OnMessageReceived(const IPC::Message &msg) {
|
| OnTextInputTypeChanged)
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_ImeCancelComposition,
|
| OnImeCancelComposition)
|
| - IPC_MESSAGE_HANDLER(ViewHostMsg_DidActivateAcceleratedCompositing,
|
| - OnDidActivateAcceleratedCompositing)
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_LockMouse, OnLockMouse)
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_UnlockMouse, OnUnlockMouse)
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_ShowDisambiguationPopup,
|
| @@ -1673,15 +1671,6 @@ void RenderWidgetHostImpl::OnImeCancelComposition() {
|
| view_->ImeCancelComposition();
|
| }
|
|
|
| -void RenderWidgetHostImpl::OnDidActivateAcceleratedCompositing(bool activated) {
|
| - TRACE_EVENT1("renderer_host",
|
| - "RenderWidgetHostImpl::OnDidActivateAcceleratedCompositing",
|
| - "activated", activated);
|
| - is_accelerated_compositing_active_ = activated;
|
| - if (view_)
|
| - view_->OnAcceleratedCompositingStateChange();
|
| -}
|
| -
|
| void RenderWidgetHostImpl::OnLockMouse(bool user_gesture,
|
| bool last_unlocked_by_target,
|
| bool privileged) {
|
|
|