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

Unified Diff: content/browser/android/content_startup_flags.cc

Issue 1411503005: Aura on Android: content/browser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@auraclank_upstream_select_file
Patch Set: Addressing remaining feedback, cleaning up build files. 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
Index: content/browser/android/content_startup_flags.cc
diff --git a/content/browser/android/content_startup_flags.cc b/content/browser/android/content_startup_flags.cc
index 9821566fdd57193af7d8a84b44afae562e7f4d34..c8376320688b121f59aa0ac0e06afbbe6678c630 100644
--- a/content/browser/android/content_startup_flags.cc
+++ b/content/browser/android/content_startup_flags.cc
@@ -99,11 +99,13 @@ void SetContentCommandLineFlags(bool single_process,
switches::kProfilerTiming, switches::kProfilerTimingDisabledValue);
}
+#if !defined(USE_AURA)
cc::LayerSettings layer_settings;
if (parsed_command_line->HasSwitch(
switches::kEnableAndroidCompositorAnimationTimelines))
mfomitchev 2015/11/03 22:23:20 Should we create a crbug for this? What's the righ
no sievers 2015/11/04 01:59:32 ui::Compositor does the same thing in ui/composito
mfomitchev 2015/11/04 20:49:31 Acknowledged. Seems odd that the flags are differe
layer_settings.use_compositor_animation_timelines = true;
Compositor::SetLayerSettings(layer_settings);
+#endif
}
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698