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

Side by Side Diff: content/browser/renderer_host/input/gesture_event_queue.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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/gesture_event_queue.h" 5 #include "content/browser/renderer_host/input/gesture_event_queue.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/touchpad_tap_suppression_controlle r.h" 8 #include "content/browser/renderer_host/input/touchpad_tap_suppression_controlle r.h"
9 #include "content/browser/renderer_host/input/touchscreen_tap_suppression_contro ller.h" 9 #include "content/browser/renderer_host/input/touchscreen_tap_suppression_contro ller.h"
10 10
11 using blink::WebGestureEvent; 11 using blink::WebGestureEvent;
12 using blink::WebInputEvent; 12 using blink::WebInputEvent;
13 13
14 namespace content { 14 namespace content {
15 namespace { 15 namespace {
16 16
17 // Whether |event_in_queue| is GesturePinchUpdate or GestureScrollUpdate and 17 // Whether |event_in_queue| is GesturePinchUpdate or GestureScrollUpdate and
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after
389 return 0; 389 return 0;
390 390
391 if (!ignore_next_ack_) 391 if (!ignore_next_ack_)
392 return 1; 392 return 1;
393 393
394 DCHECK_GT(coalesced_gesture_events_.size(), 1U); 394 DCHECK_GT(coalesced_gesture_events_.size(), 1U);
395 return 2; 395 return 2;
396 } 396 }
397 397
398 } // namespace content 398 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/renderer_host/display_link_mac.cc ('k') | content/browser/renderer_host/input/synthetic_gesture_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698