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

Side by Side Diff: ui/events/latency_info.h

Issue 23694031: Fix race conditions in window snapshot code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressing further feedback, added stress test for snapshots Created 7 years, 2 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 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 #ifndef UI_EVENTS_LATENCY_INFO_H_ 5 #ifndef UI_EVENTS_LATENCY_INFO_H_
6 #define UI_EVENTS_LATENCY_INFO_H_ 6 #define UI_EVENTS_LATENCY_INFO_H_
7 7
8 #include <map> 8 #include <map>
9 #include <utility> 9 #include <utility>
10 10
(...skipping 14 matching lines...) Expand all
25 // is the same as INPUT_EVENT_LATENCY_RWH_COMPONENT. 25 // is the same as INPUT_EVENT_LATENCY_RWH_COMPONENT.
26 INPUT_EVENT_LATENCY_SCROLL_UPDATE_RWH_COMPONENT, 26 INPUT_EVENT_LATENCY_SCROLL_UPDATE_RWH_COMPONENT,
27 // The original timestamp of the touch event which converts to scroll update. 27 // The original timestamp of the touch event which converts to scroll update.
28 INPUT_EVENT_LATENCY_SCROLL_UPDATE_ORIGINAL_COMPONENT, 28 INPUT_EVENT_LATENCY_SCROLL_UPDATE_ORIGINAL_COMPONENT,
29 // Original timestamp for input event (e.g. timestamp from kernel). 29 // Original timestamp for input event (e.g. timestamp from kernel).
30 INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT, 30 INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT,
31 // Timestamp when the UI event is created. 31 // Timestamp when the UI event is created.
32 INPUT_EVENT_LATENCY_UI_COMPONENT, 32 INPUT_EVENT_LATENCY_UI_COMPONENT,
33 // Timestamp when the event is acked from renderer. This is currently set 33 // Timestamp when the event is acked from renderer. This is currently set
34 // only for touch events. 34 // only for touch events.
35 INPUT_EVENT_LATENCY_ACKED_COMPONENT 35 INPUT_EVENT_LATENCY_ACKED_COMPONENT,
36 // Frame number when a window snapshot was requested. The snapshot
37 // is taken when the rendering results actually reach the screen.
38 WINDOW_SNAPSHOT_FRAME_NUMBER_COMPONENT
36 }; 39 };
37 40
38 struct EVENTS_EXPORT LatencyInfo { 41 struct EVENTS_EXPORT LatencyInfo {
39 struct LatencyComponent { 42 struct LatencyComponent {
40 // Nondecreasing number that can be used to determine what events happened 43 // Nondecreasing number that can be used to determine what events happened
41 // in the component at the time this struct was sent on to the next 44 // in the component at the time this struct was sent on to the next
42 // component. 45 // component.
43 int64 sequence_number; 46 int64 sequence_number;
44 // Average time of events that happened in this component. 47 // Average time of events that happened in this component.
45 base::TimeTicks event_time; 48 base::TimeTicks event_time;
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 90
88 LatencyMap latency_components; 91 LatencyMap latency_components;
89 92
90 // This represents the final time that a frame is displayed it. 93 // This represents the final time that a frame is displayed it.
91 base::TimeTicks swap_timestamp; 94 base::TimeTicks swap_timestamp;
92 }; 95 };
93 96
94 } // namespace ui 97 } // namespace ui
95 98
96 #endif // UI_EVENTS_LATENCY_INFO_H_ 99 #endif // UI_EVENTS_LATENCY_INFO_H_
OLDNEW
« content/test/data/screenshot_sync.html ('K') | « tools/telemetry/telemetry/core/tab_unittest.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698