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

Side by Side Diff: content/browser/renderer_host/touchscreen_tap_suppression_controller_stub.cc

Issue 16703020: Rewrite scoped_ptr<T>(NULL) to use the default ctor in content/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Clean up insanity Created 7 years, 6 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 | Annotate | Revision Log
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/touchscreen_tap_suppression_controller.h " 5 #include "content/browser/renderer_host/touchscreen_tap_suppression_controller.h "
6 6
7 #include "content/browser/renderer_host/tap_suppression_controller.h" 7 #include "content/browser/renderer_host/tap_suppression_controller.h"
8 8
9 // This is the stub implementation of TouchscreenTapSuppressionController which 9 // This is the stub implementation of TouchscreenTapSuppressionController which
10 // is used on platforms that do not need tap suppression for touchscreen. 10 // is used on platforms that do not need tap suppression for touchscreen.
11 11
12 namespace content { 12 namespace content {
13 13
14 TouchscreenTapSuppressionController::TouchscreenTapSuppressionController( 14 TouchscreenTapSuppressionController::TouchscreenTapSuppressionController(
15 GestureEventFilter* /*gef*/) 15 GestureEventFilter* /*gef*/)
16 : gesture_event_filter_(NULL), 16 : gesture_event_filter_(NULL) {}
17 controller_(NULL) {
18 }
19 17
20 TouchscreenTapSuppressionController::~TouchscreenTapSuppressionController() {} 18 TouchscreenTapSuppressionController::~TouchscreenTapSuppressionController() {}
21 19
22 void TouchscreenTapSuppressionController::GestureFlingCancel() {} 20 void TouchscreenTapSuppressionController::GestureFlingCancel() {}
23 21
24 void TouchscreenTapSuppressionController::GestureFlingCancelAck( 22 void TouchscreenTapSuppressionController::GestureFlingCancelAck(
25 bool /*processed*/) { 23 bool /*processed*/) {
26 } 24 }
27 25
28 bool TouchscreenTapSuppressionController::ShouldDeferGestureTapDown( 26 bool TouchscreenTapSuppressionController::ShouldDeferGestureTapDown(
(...skipping 17 matching lines...) Expand all
46 return 0; 44 return 0;
47 } 45 }
48 46
49 void TouchscreenTapSuppressionController::DropStashedTapDown() {} 47 void TouchscreenTapSuppressionController::DropStashedTapDown() {}
50 48
51 void TouchscreenTapSuppressionController::ForwardStashedTapDownForDeferral() {} 49 void TouchscreenTapSuppressionController::ForwardStashedTapDownForDeferral() {}
52 50
53 void TouchscreenTapSuppressionController::ForwardStashedTapDownSkipDeferral() {} 51 void TouchscreenTapSuppressionController::ForwardStashedTapDownSkipDeferral() {}
54 52
55 } // namespace content 53 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/renderer_host/touchpad_tap_suppression_controller.cc ('k') | content/browser/session_history_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698