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

Side by Side Diff: content/renderer/input/input_handler_manager.cc

Issue 139563004: Notification on finish handling of top control gesture (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/renderer/input/input_handler_manager.h" 5 #include "content/renderer/input/input_handler_manager.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/debug/trace_event.h" 8 #include "base/debug/trace_event.h"
9 #include "base/message_loop/message_loop_proxy.h" 9 #include "base/message_loop/message_loop_proxy.h"
10 #include "cc/input/input_handler.h" 10 #include "cc/input/input_handler.h"
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 InputHandlerProxy* proxy = it->second->input_handler_proxy(); 120 InputHandlerProxy* proxy = it->second->input_handler_proxy();
121 return InputEventDispositionToAck( 121 return InputEventDispositionToAck(
122 proxy->HandleInputEventWithLatencyInfo(*input_event, latency_info)); 122 proxy->HandleInputEventWithLatencyInfo(*input_event, latency_info));
123 } 123 }
124 124
125 void InputHandlerManager::DidOverscroll(int routing_id, 125 void InputHandlerManager::DidOverscroll(int routing_id,
126 const cc::DidOverscrollParams& params) { 126 const cc::DidOverscrollParams& params) {
127 client_->DidOverscroll(routing_id, params); 127 client_->DidOverscroll(routing_id, params);
128 } 128 }
129 129
130 130 void InputHandlerManager::DidFinishTopControlsGesture(int routing_id) {
131 client_->DidFinishTopControlsGesture(routing_id);
132 }
131 133
132 } // namespace content 134 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/input/input_handler_manager.h ('k') | content/renderer/input/input_handler_manager_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698