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

Unified Diff: cc/test/fake_external_begin_frame_source.h

Issue 801973002: Introduce CompositorDependencies for RenderWidgetCompositor. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: compdep: . Created 6 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/resources/resource_provider.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..a97f1f1d761ea7704e8aa0f67c8b926478ba2e1d
--- /dev/null
+++ b/cc/test/fake_external_begin_frame_source.h
@@ -0,0 +1,38 @@
+// 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);
+ virtual ~FakeExternalBeginFrameSource();
+
+ bool is_ready() const { return is_ready_; }
+
+ // BeginFrameSource implementation.
+ void SetClientReady() override;
+
+ // BeginFrameSourceMixIn overrides.
+ void OnNeedsBeginFramesChange(bool needs_begin_frames) override;
+
+ void TestOnBeginFrame();
+
+ 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/resources/resource_provider.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