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

Side by Side Diff: content/browser/renderer_host/input/touchpad_tap_suppression_controller.cc

Issue 20007002: Move more input-related files to renderer_host/input (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Proper .gypi alpha ordering Created 7 years, 4 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 (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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/browser/renderer_host/touchpad_tap_suppression_controller.h" 5 #include "content/browser/renderer_host/input/touchpad_tap_suppression_controlle r.h"
6 6
7 #include "content/browser/renderer_host/tap_suppression_controller.h" 7 #include "content/browser/renderer_host/input/tap_suppression_controller.h"
8 #include "content/browser/renderer_host/tap_suppression_controller_client.h" 8 #include "content/browser/renderer_host/input/tap_suppression_controller_client. h"
9 9
10 // The default implementation of the TouchpadTapSuppressionController does not 10 // The default implementation of the TouchpadTapSuppressionController does not
11 // suppress taps. Touchpad tap suppression is needed only on CrOS. 11 // suppress taps. Touchpad tap suppression is needed only on CrOS.
12 12
13 namespace content { 13 namespace content {
14 14
15 TouchpadTapSuppressionController::TouchpadTapSuppressionController( 15 TouchpadTapSuppressionController::TouchpadTapSuppressionController(
16 InputRouter* /*input_router*/) 16 InputRouter* /*input_router*/)
17 : input_router_(NULL) {} 17 : input_router_(NULL) {}
18 18
(...skipping 23 matching lines...) Expand all
42 void TouchpadTapSuppressionController::DropStashedTapDown() { 42 void TouchpadTapSuppressionController::DropStashedTapDown() {
43 } 43 }
44 44
45 void TouchpadTapSuppressionController::ForwardStashedTapDownForDeferral() { 45 void TouchpadTapSuppressionController::ForwardStashedTapDownForDeferral() {
46 } 46 }
47 47
48 void TouchpadTapSuppressionController::ForwardStashedTapDownSkipDeferral() { 48 void TouchpadTapSuppressionController::ForwardStashedTapDownSkipDeferral() {
49 } 49 }
50 50
51 } // namespace content 51 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698