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

Unified Diff: cc/test/fake_external_begin_frame_source.h

Issue 1531403002: Revert "Delete CC." (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years 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/failure_output_surface.cc ('k') | cc/test/fake_external_begin_frame_source.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/fake_external_begin_frame_source.h
diff --git a/cc/test/fake_external_begin_frame_source.h b/cc/test/fake_external_begin_frame_source.h
new file mode 100644
index 0000000000000000000000000000000000000000..d5b14e7556d3fdb1dd4d7c126c96250019465119
--- /dev/null
+++ b/cc/test/fake_external_begin_frame_source.h
@@ -0,0 +1,39 @@
+// 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_FAKE_EXTERNAL_BEGIN_FRAME_SOURCE_H_
+#define CC_TEST_FAKE_EXTERNAL_BEGIN_FRAME_SOURCE_H_
+
+#include "base/memory/weak_ptr.h"
+#include "cc/scheduler/begin_frame_source.h"
+
+namespace cc {
+
+class FakeExternalBeginFrameSource
+ : public BeginFrameSourceMixIn,
+ public NON_EXPORTED_BASE(base::NonThreadSafe) {
+ public:
+ explicit FakeExternalBeginFrameSource(double refresh_rate);
+ ~FakeExternalBeginFrameSource() override;
+
+ bool is_ready() const { return is_ready_; }
+
+ // BeginFrameSource implementation.
+ void SetClientReady() override;
+
+ // BeginFrameSourceMixIn overrides.
+ void OnNeedsBeginFramesChange(bool needs_begin_frames) override;
+
+ void TestOnBeginFrame();
+ void PostTestOnBeginFrame();
+
+ private:
+ double milliseconds_per_frame_;
+ bool is_ready_;
+ base::WeakPtrFactory<FakeExternalBeginFrameSource> weak_ptr_factory_;
+};
+
+} // namespace cc
+
+#endif // CC_TEST_FAKE_EXTERNAL_BEGIN_FRAME_SOURCE_H_
« no previous file with comments | « cc/test/failure_output_surface.cc ('k') | cc/test/fake_external_begin_frame_source.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698