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

Unified Diff: cc/trees/layer_tree_host_unittest_context.cc

Issue 2231233002: cc: Remove the lie of "DirectRenderer" in LayerTreeTests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: no-ltt-delegating: ccpt Created 4 years, 4 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/trees/layer_tree_host_unittest.cc ('k') | cc/trees/layer_tree_host_unittest_copyrequest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/trees/layer_tree_host_unittest_context.cc
diff --git a/cc/trees/layer_tree_host_unittest_context.cc b/cc/trees/layer_tree_host_unittest_context.cc
index 23d344fda5adaf0d93ecb6d3a9748324af289e11..feebe2e97e01e5c7078d2db2c9c9328dfdd03473 100644
--- a/cc/trees/layer_tree_host_unittest_context.cc
+++ b/cc/trees/layer_tree_host_unittest_context.cc
@@ -783,27 +783,27 @@ class LayerTreeHostContextTestLostContextAndEvictTextures
};
TEST_F(LayerTreeHostContextTestLostContextAndEvictTextures,
- LoseAfterEvict_SingleThread_DelegatingRenderer) {
+ LoseAfterEvict_SingleThread) {
lose_after_evict_ = true;
- RunTest(CompositorMode::SINGLE_THREADED, true);
+ RunTest(CompositorMode::SINGLE_THREADED);
}
TEST_F(LayerTreeHostContextTestLostContextAndEvictTextures,
- LoseAfterEvict_MultiThread_DelegatingRenderer) {
+ LoseAfterEvict_MultiThread) {
lose_after_evict_ = true;
- RunTest(CompositorMode::THREADED, true);
+ RunTest(CompositorMode::THREADED);
}
TEST_F(LayerTreeHostContextTestLostContextAndEvictTextures,
- LoseBeforeEvict_SingleThread_DelegatingRenderer) {
+ LoseBeforeEvict_SingleThread) {
lose_after_evict_ = false;
- RunTest(CompositorMode::SINGLE_THREADED, true);
+ RunTest(CompositorMode::SINGLE_THREADED);
}
TEST_F(LayerTreeHostContextTestLostContextAndEvictTextures,
- LoseBeforeEvict_MultiThread_DelegatingRenderer) {
+ LoseBeforeEvict_MultiThread) {
lose_after_evict_ = false;
- RunTest(CompositorMode::THREADED, true);
+ RunTest(CompositorMode::THREADED);
}
class LayerTreeHostContextTestLayersNotified : public LayerTreeHostContextTest {
« no previous file with comments | « cc/trees/layer_tree_host_unittest.cc ('k') | cc/trees/layer_tree_host_unittest_copyrequest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698