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

Unified Diff: cc/output/context_cache_controller_unittest.cc

Issue 2651703004: Temporarily disable context idle cleanup. (Closed)
Patch Set: Disable unit tests as well Created 3 years, 11 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/output/context_cache_controller.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/output/context_cache_controller_unittest.cc
diff --git a/cc/output/context_cache_controller_unittest.cc b/cc/output/context_cache_controller_unittest.cc
index 35e1e25a0d5d6356f7320ee0772dcf72c5ad2d23..5a404a28fa09a772dda2d97db8e57d054919d239 100644
--- a/cc/output/context_cache_controller_unittest.cc
+++ b/cc/output/context_cache_controller_unittest.cc
@@ -54,6 +54,11 @@ TEST(ContextCacheControllerTest, ScopedVisibilityMulti) {
}
TEST(ContextCacheControllerTest, ScopedBusyWhileVisible) {
+// TODO(ericrk): Temporarily disabling this to investigate whether this
+// code regressed scroll latency on Android. crbug.com/664181
+#if defined(OS_ANDROID)
+ return;
+#endif
StrictMock<MockContextSupport> context_support;
auto task_runner = make_scoped_refptr(new base::TestMockTimeTaskRunner);
ContextCacheController cache_controller(&context_support, task_runner);
@@ -76,6 +81,11 @@ TEST(ContextCacheControllerTest, ScopedBusyWhileVisible) {
}
TEST(ContextCacheControllerTest, ScopedBusyWhileNotVisible) {
+// TODO(ericrk): Temporarily disabling this to investigate whether this
+// code regressed scroll latency on Android. crbug.com/664181
+#if defined(OS_ANDROID)
+ return;
+#endif
StrictMock<MockContextSupport> context_support;
auto task_runner = make_scoped_refptr(new base::TestMockTimeTaskRunner);
ContextCacheController cache_controller(&context_support, task_runner);
@@ -88,6 +98,11 @@ TEST(ContextCacheControllerTest, ScopedBusyWhileNotVisible) {
}
TEST(ContextCacheControllerTest, ScopedBusyMulitpleWhileVisible) {
+// TODO(ericrk): Temporarily disabling this to investigate whether this
+// code regressed scroll latency on Android. crbug.com/664181
+#if defined(OS_ANDROID)
+ return;
+#endif
StrictMock<MockContextSupport> context_support;
auto task_runner = make_scoped_refptr(new base::TestMockTimeTaskRunner);
ContextCacheController cache_controller(&context_support, task_runner);
« no previous file with comments | « cc/output/context_cache_controller.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698