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

Side by Side Diff: components/scheduler/base/queueing_time_estimator.h

Issue 1898233002: Report expected task queueing time via UMA (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address feedback. Created 4 years, 5 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 2016 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_SCHEDULER_RENDERER_QUEUEING_TIME_ESTIMATOR_H_
6 #define COMPONENTS_SCHEDULER_RENDERER_QUEUEING_TIME_ESTIMATOR_H_
7
8 #include "base/macros.h"
9 #include "base/message_loop/message_loop.h"
10 #include "base/time/time.h"
11 #include "components/scheduler/scheduler_export.h"
12
13 namespace base {
14 class TickClock;
15 }
16
17 namespace scheduler {
18
19 // Records the expected queueing time for a high priority task occurring
20 // randomly during each interval of length |window_duration|.
21 class SCHEDULER_EXPORT QueueingTimeEstimator {
22 public:
23 class SCHEDULER_EXPORT Client {
24 public:
25 virtual void OnQueueingTimeForWindowEstimated(
26 base::TimeDelta queueing_time) = 0;
27 virtual ~Client() {}
28 };
alex clarke (OOO till 29th) 2016/07/06 13:51:32 nit: DISALLOW_COPY_AND_ASSIGN(Client);
tdresser 2016/07/06 14:26:50 Done.
29
30 QueueingTimeEstimator(Client* client,
31 base::TimeDelta window_duration);
32
33 void OnToplevelTaskCompleted(base::TimeTicks task_start_time,
34 base::TimeTicks task_end_time);
35
36 private:
37 bool TimePastWindowEnd(base::TimeTicks task_end_time);
38 Client* client_; // NOT OWNED.
39
40 base::TimeDelta current_expected_queueing_time_;
41 base::TimeDelta window_duration_;
42 base::TimeTicks window_start_time_;
43
44 DISALLOW_COPY_AND_ASSIGN(QueueingTimeEstimator);
45 };
46
47 } // namespace scheduler
48
49 #endif // COMPONENTS_SCHEDULER_RENDERER_QUEUEING_TIME_ESTIMATOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698