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

Unified Diff: cc/test/scheduler_test_common.h

Issue 1318603012: cc: Making BeginFrameSources support multiple observers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adding fixme. Created 5 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/scheduler/begin_frame_source_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/scheduler_test_common.h
diff --git a/cc/test/scheduler_test_common.h b/cc/test/scheduler_test_common.h
index ce6ccc4789107ff75f2d888b0ab167d47eba5923..48893f9bb1d8ad5191bde07c342f3092282ed9fe 100644
--- a/cc/test/scheduler_test_common.h
+++ b/cc/test/scheduler_test_common.h
@@ -92,11 +92,21 @@ class FakeBeginFrameSource : public BeginFrameSourceBase {
FakeBeginFrameSource() : remaining_frames_(false) {}
~FakeBeginFrameSource() override {}
- BeginFrameObserver* GetObserver() { return observer_; }
+ BeginFrameObserver* GetObserver() {
+ if ((observer_list_).might_have_observers()) {
+ base::ObserverList<BeginFrameObserver>::Iterator it(&observer_list_);
+ BeginFrameObserver* obs;
+ while ((obs = it.GetNext()) != nullptr) {
+ return obs;
+ }
+ }
+ return nullptr;
+ }
BeginFrameArgs TestLastUsedBeginFrameArgs() {
- if (observer_) {
- return observer_->LastUsedBeginFrameArgs();
+ BeginFrameObserver* obs = GetObserver();
+ if (obs) {
+ return obs->LastUsedBeginFrameArgs();
}
return BeginFrameArgs();
}
« no previous file with comments | « cc/scheduler/begin_frame_source_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698