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

Side by Side Diff: content/browser/renderer_host/input/touch_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 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/touch_event_queue.h" 5 #include "content/browser/renderer_host/input/touch_event_queue.h"
6 6
7 #include "base/auto_reset.h" 7 #include "base/auto_reset.h"
8 #include "base/debug/trace_event.h"
9 #include "base/stl_util.h" 8 #include "base/stl_util.h"
9 #include "base/trace_event/trace_event.h"
10 #include "content/browser/renderer_host/input/timeout_monitor.h" 10 #include "content/browser/renderer_host/input/timeout_monitor.h"
11 #include "content/common/input/web_touch_event_traits.h" 11 #include "content/common/input/web_touch_event_traits.h"
12 #include "ui/gfx/geometry/point_f.h" 12 #include "ui/gfx/geometry/point_f.h"
13 13
14 using blink::WebInputEvent; 14 using blink::WebInputEvent;
15 using blink::WebTouchEvent; 15 using blink::WebTouchEvent;
16 using blink::WebTouchPoint; 16 using blink::WebTouchPoint;
17 using ui::LatencyInfo; 17 using ui::LatencyInfo;
18 18
19 namespace content { 19 namespace content {
(...skipping 751 matching lines...) Expand 10 before | Expand all | Expand 10 after
771 if (ack_result != INPUT_EVENT_ACK_STATE_NO_CONSUMER_EXISTS) 771 if (ack_result != INPUT_EVENT_ACK_STATE_NO_CONSUMER_EXISTS)
772 touch_consumer_states_.mark_bit(point.id); 772 touch_consumer_states_.mark_bit(point.id);
773 else 773 else
774 touch_consumer_states_.clear_bit(point.id); 774 touch_consumer_states_.clear_bit(point.id);
775 } 775 }
776 } 776 }
777 } 777 }
778 } 778 }
779 779
780 } // namespace content 780 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698