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

Unified Diff: cc/scheduler/begin_frame_source_unittest.cc

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.cc ('k') | cc/test/scheduler_test_common.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/scheduler/begin_frame_source_unittest.cc
diff --git a/cc/scheduler/begin_frame_source_unittest.cc b/cc/scheduler/begin_frame_source_unittest.cc
index 1f85622878e91680efd7f5ea56402c3653d81ada..bacbfbe485b6f0b662542b09581c3ec596b0f842 100644
--- a/cc/scheduler/begin_frame_source_unittest.cc
+++ b/cc/scheduler/begin_frame_source_unittest.cc
@@ -231,9 +231,6 @@ TEST(BeginFrameSourceBaseTest, ObserverManipulation) {
EXPECT_EQ(&obs, source.GetObserver());
#ifndef NDEBUG
- // Adding an observer when an observer already exists should DCHECK fail.
- EXPECT_DEATH({ source.AddObserver(&otherObs); }, "");
-
// Removing wrong observer should DCHECK fail.
EXPECT_DEATH({ source.RemoveObserver(&otherObs); }, "");
@@ -249,6 +246,9 @@ TEST(BeginFrameSourceBaseTest, ObserverManipulation) {
source.AddObserver(&otherObs);
EXPECT_EQ(&otherObs, source.GetObserver());
source.RemoveObserver(&otherObs);
+
+ // TODO(mithro): Add a test here for adding / removing multiple observers.
+
}
TEST(BeginFrameSourceBaseTest, Observer) {
« no previous file with comments | « cc/scheduler/begin_frame_source.cc ('k') | cc/test/scheduler_test_common.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698