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

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

Issue 1923973002: Add UMA metric for tracking listeners for blocking touch while fling is happening (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Sync the fling states Created 4 years, 7 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 <utility> 7 #include <utility>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/location.h" 10 #include "base/location.h"
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 } 246 }
247 247
248 void InputHandlerManager::DidStopFlinging(int routing_id) { 248 void InputHandlerManager::DidStopFlinging(int routing_id) {
249 client_->DidStopFlinging(routing_id); 249 client_->DidStopFlinging(routing_id);
250 } 250 }
251 251
252 void InputHandlerManager::DidAnimateForInput() { 252 void InputHandlerManager::DidAnimateForInput() {
253 renderer_scheduler_->DidAnimateForInputOnCompositorThread(); 253 renderer_scheduler_->DidAnimateForInputOnCompositorThread();
254 } 254 }
255 255
256 void InputHandlerManager::DidStartFlinging(bool is_on_impl) {
257 client_->DidStartFlinging(is_on_impl);
258 }
259
256 } // namespace content 260 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698