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

Unified Diff: ui/compositor/compositor.cc

Issue 1449143004: Enable compositor-thread property trees (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 | « third_party/WebKit/LayoutTests/TestExpectations ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/compositor/compositor.cc
diff --git a/ui/compositor/compositor.cc b/ui/compositor/compositor.cc
index ceb6873030cfab8a7163d2e53b5085b510389050..438d83132ec03c10a63eb24eb7f3190904ab4c3f 100644
--- a/ui/compositor/compositor.cc
+++ b/ui/compositor/compositor.cc
@@ -135,8 +135,8 @@ Compositor::Compositor(ui::ContextFactory* context_factory,
settings.initial_debug_state.SetRecordRenderingStats(
command_line->HasSwitch(cc::switches::kEnableGpuBenchmarking));
- settings.use_property_trees =
- command_line->HasSwitch(cc::switches::kEnableCompositorPropertyTrees);
+ if (command_line->HasSwitch(cc::switches::kDisableCompositorPropertyTrees))
+ settings.use_property_trees = false;
settings.use_zero_copy = IsUIZeroCopyEnabled();
settings.renderer_settings.use_rgba_4444_textures =
« no previous file with comments | « third_party/WebKit/LayoutTests/TestExpectations ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698