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

Unified Diff: ash/test/task_switch_time_tracker_test_api.h

Issue 1133123003: Added metrics to track the time between task switches done via the shelf. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added ASH_EXPORT to TaskSwitchTimeTracker. Created 5 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/metrics/user_metrics_recorder.cc ('k') | ash/test/task_switch_time_tracker_test_api.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/test/task_switch_time_tracker_test_api.h
diff --git a/ash/test/task_switch_time_tracker_test_api.h b/ash/test/task_switch_time_tracker_test_api.h
new file mode 100644
index 0000000000000000000000000000000000000000..42144855162ab479e9932106c1201732416b5846
--- /dev/null
+++ b/ash/test/task_switch_time_tracker_test_api.h
@@ -0,0 +1,53 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef ASH_TEST_TASK_SWITCH_TIME_TRACKER_TEST_API_H_
+#define ASH_TEST_TASK_SWITCH_TIME_TRACKER_TEST_API_H_
+
+#include <string>
+
+#include "base/memory/scoped_ptr.h"
+#include "base/time/time.h"
+
+namespace base {
+class SimpleTestTickClock;
+} // namespace base
+
+namespace ash {
+
+class TaskSwitchTimeTracker;
+
+namespace test {
+
+// Provides access TaskSwitchTimeTracker's internals.
+class TaskSwitchTimeTrackerTestAPI {
+ public:
+ // Creates a TaskSwitchTimeTracker with the given |histogram_name| and injects
+ // a base::SimpleTestTickClock that can be controlled.
+ explicit TaskSwitchTimeTrackerTestAPI(const std::string& histogram_name);
+
+ ~TaskSwitchTimeTrackerTestAPI();
+
+ TaskSwitchTimeTracker* time_tracker() { return time_tracker_.get(); }
+
+ // Advances |time_tracker_|'s TickClock by |time_delta|.
+ void Advance(base::TimeDelta time_delta);
+
+ // Wrapper function to access TaskSwitchTimeTracker::HasLastActionTime();
+ bool HasLastActionTime() const;
+
+ private:
+ // Owned by |time_tracker_|.
+ base::SimpleTestTickClock* tick_clock_;
+
+ // The TaskSwitchTimeTracker to provide internal access to.
+ scoped_ptr<TaskSwitchTimeTracker> time_tracker_;
+
+ DISALLOW_COPY_AND_ASSIGN(TaskSwitchTimeTrackerTestAPI);
+};
+
+} // namespace test
+} // namespace ash
+
+#endif // ASH_TEST_TASK_SWITCH_TIME_TRACKER_TEST_API_H_
« no previous file with comments | « ash/metrics/user_metrics_recorder.cc ('k') | ash/test/task_switch_time_tracker_test_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698