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

Side by Side Diff: components/latency_tracker/latency_tracker.h

Issue 2771053003: WIP: Plumbing input event latency reporting through Mus GPU.
Patch Set: Updating dependencies. Created 3 years, 9 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
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef COMPONENTS_LATENCY_TRACKER_LATENCY_TRACKER_H_
6 #define COMPONENTS_LATENCY_TRACKER_LATENCY_TRACKER_H_
7
8 #include <stdint.h>
9
10 #include <vector>
11
12 #include "base/macros.h"
13 //#include "content/browser/renderer_host/event_with_latency_info.h"
14 //#include "content/common/content_export.h"
15 //#include "content/common/input/input_event_ack_state.h"
16 #include "ui/events/latency_info.h"
17
18 namespace latency_tracker {
19
20 //class RenderWidgetHostDelegate;
21
22 // Utility class for tracking the latency of events passing through
23 //// a given RenderWidgetHost.
24 class LatencyTracker {
25 public:
26 LatencyTracker() = default;
27 ~LatencyTracker() = default;
28
29 // Terminates latency tracking for events that triggered rendering, also
30 // performing relevant UMA latency reporting.
31 // Called when the RenderWidgetHost receives a swap update from the GPU.
32 void OnGpuSwapBufersCompleted(const ui::LatencyInfo& latency,
33 bool is_running_navigation_hint_task);
34
35 protected:
36 virtual void ReportRapporScrollLatency(
37 const std::string& name,
38 const ui::LatencyInfo::LatencyComponent& start_component,
39 const ui::LatencyInfo::LatencyComponent& end_component);
40
41 private:
42 void ComputeTouchAndWheelScrollLatencyHistograms(
43 const ui::LatencyInfo::LatencyComponent& gpu_swap_begin_component,
44 const ui::LatencyInfo::LatencyComponent& gpu_swap_end_component,
45 const ui::LatencyInfo& latency);
46
47 DISALLOW_COPY_AND_ASSIGN(LatencyTracker);
48 };
49
50 } // namespace latency_tracker
51
52 #endif // COMPONENTS_LATENCY_TRACKER_LATENCY_TRACKER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698