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

Unified Diff: cc/scheduler/begin_frame_source.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 | « no previous file | cc/scheduler/begin_frame_source.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/scheduler/begin_frame_source.h
diff --git a/cc/scheduler/begin_frame_source.h b/cc/scheduler/begin_frame_source.h
index f6f1a789da7bb5770d8e4c5ae960de1b60ab14d5..fe6c5101ce35506af96b42d98d7b103cbf7b3a3b 100644
--- a/cc/scheduler/begin_frame_source.h
+++ b/cc/scheduler/begin_frame_source.h
@@ -136,7 +136,7 @@ class CC_EXPORT BeginFrameSource {
// in their own AsValueInto implementation.
class CC_EXPORT BeginFrameSourceBase : public BeginFrameSource {
public:
- ~BeginFrameSourceBase() override {}
+ ~BeginFrameSourceBase() override;
// BeginFrameSource
bool NeedsBeginFrames() const final;
@@ -161,7 +161,9 @@ class CC_EXPORT BeginFrameSourceBase : public BeginFrameSource {
// needs_begin_frames change.
virtual void OnNeedsBeginFramesChange(bool needs_begin_frames) {}
- BeginFrameObserver* observer_;
+ base::ObserverList<const BeginFrameObserver>::Iterator
+ getConstObserverListIterator() const;
+ base::ObserverList<BeginFrameObserver> observer_list_;
bool needs_begin_frames_;
private:
« no previous file with comments | « no previous file | cc/scheduler/begin_frame_source.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698