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

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

Issue 866803003: Mechanical rename of tracing includes for /content [1/3] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@move_trace_part2
Patch Set: Created 5 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/browser/renderer_host/input/synthetic_gesture_controller.h" 5 #include "content/browser/renderer_host/input/synthetic_gesture_controller.h"
6 6
7 #include "base/debug/trace_event.h" 7 #include "base/trace_event/trace_event.h"
8 #include "content/browser/renderer_host/input/synthetic_gesture_target.h" 8 #include "content/browser/renderer_host/input/synthetic_gesture_target.h"
9 #include "content/common/input/synthetic_smooth_scroll_gesture_params.h" 9 #include "content/common/input/synthetic_smooth_scroll_gesture_params.h"
10 #include "content/common/input_messages.h" 10 #include "content/common/input_messages.h"
11 #include "content/public/browser/render_widget_host.h" 11 #include "content/public/browser/render_widget_host.h"
12 12
13 namespace content { 13 namespace content {
14 14
15 SyntheticGestureController::SyntheticGestureController( 15 SyntheticGestureController::SyntheticGestureController(
16 scoped_ptr<SyntheticGestureTarget> gesture_target) 16 scoped_ptr<SyntheticGestureTarget> gesture_target)
17 : gesture_target_(gesture_target.Pass()) {} 17 : gesture_target_(gesture_target.Pass()) {}
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 } 91 }
92 92
93 SyntheticGestureController::GestureAndCallbackQueue::GestureAndCallbackQueue() { 93 SyntheticGestureController::GestureAndCallbackQueue::GestureAndCallbackQueue() {
94 } 94 }
95 95
96 SyntheticGestureController::GestureAndCallbackQueue:: 96 SyntheticGestureController::GestureAndCallbackQueue::
97 ~GestureAndCallbackQueue() { 97 ~GestureAndCallbackQueue() {
98 } 98 }
99 99
100 } // namespace content 100 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698