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

Unified Diff: cc/test/test_now_source.h

Issue 387493002: Fixing and enhancing OrderedSimpleTaskRunner to allow 100% deterministic tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixes for Brian's comments. Created 6 years, 3 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 | « cc/test/scheduler_test_common.cc ('k') | cc/test/test_now_source.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/test_now_source.h
diff --git a/cc/test/test_now_source.h b/cc/test/test_now_source.h
new file mode 100644
index 0000000000000000000000000000000000000000..178a56b24f85d4e92fef795d5263796cde26e266
--- /dev/null
+++ b/cc/test/test_now_source.h
@@ -0,0 +1,60 @@
+// Copyright 2014 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 CC_TEST_TEST_NOW_SOURCE_H_
+#define CC_TEST_TEST_NOW_SOURCE_H_
+
+#include <string>
+
+#include "base/basictypes.h"
+#include "base/debug/trace_event.h"
+#include "base/debug/trace_event_argument.h"
+#include "base/logging.h"
+
+namespace cc {
+
+class TestNowSource : public base::RefCounted<TestNowSource> {
+ public:
+ static scoped_refptr<TestNowSource> Create();
+ static scoped_refptr<TestNowSource> Create(int64_t initial);
+ static scoped_refptr<TestNowSource> Create(base::TimeTicks initial);
+
+ virtual void Reset();
+ virtual base::TimeTicks Now() const;
+ virtual void SetNow(base::TimeTicks time);
+ virtual void AdvanceNow(base::TimeDelta period);
+
+ // Convenience functions to make it the now source easier to use in unit
+ // tests.
+ void AdvanceNowMicroseconds(int64_t period_in_microseconds);
+ void SetNowMicroseconds(int64_t time_in_microseconds);
+
+ static const base::TimeTicks kAbsoluteMaxNow;
+
+ // Tracing functions
+ scoped_refptr<base::debug::ConvertableToTraceFormat> AsValue() const;
+ void AsValueInto(base::debug::TracedValue* state) const;
+ std::string ToString() const;
+
+ protected:
+ TestNowSource();
+ explicit TestNowSource(int64_t initial);
+ explicit TestNowSource(base::TimeTicks initial);
+
+ base::TimeTicks initial_;
+ base::TimeTicks now_;
+
+ private:
+ friend class base::RefCounted<TestNowSource>;
+ virtual ~TestNowSource();
+};
+
+// gtest pretty printing functions
+void PrintTo(const scoped_refptr<TestNowSource>& src, ::std::ostream* os);
+::std::ostream& operator<<(::std::ostream& os,
+ const scoped_refptr<TestNowSource>& src);
+
+} // namespace cc
+
+#endif // CC_TEST_TEST_NOW_SOURCE_H_
« no previous file with comments | « cc/test/scheduler_test_common.cc ('k') | cc/test/test_now_source.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698