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

Unified Diff: chrome/browser/about_flags.cc

Issue 111723012: Linux Aura: Added --use-system-title-bar flag. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Formatting. Created 7 years 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: chrome/browser/about_flags.cc
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc
index a263b88429bed9566f4ddda1169a1c0d7fb44857..abfd78bda55e9c74e40381190cd45bfb5e0db917 100644
--- a/chrome/browser/about_flags.cc
+++ b/chrome/browser/about_flags.cc
@@ -1966,6 +1966,16 @@ const Experiment kExperiments[] = {
kOsAll,
SINGLE_VALUE_TYPE(autofill::switches::kEnableIgnoreAutocompleteOff)
}
+#if defined(USE_AURA)
+ ,
James Cook 2013/12/19 20:57:55 optional nit: Maybe this could go somewhere above,
Matt Giuca 2013/12/20 03:53:22 Hmm, that sounds good but the order here actually
+ {
+ "use-system-title-bar",
+ IDS_FLAGS_USE_SYSTEM_TITLE_BAR,
+ IDS_FLAGS_USE_SYSTEM_TITLE_BAR_DESCRIPTION,
+ kOsLinux,
+ SINGLE_VALUE_TYPE(switches::kUseSystemTitleBar)
+ }
+#endif
};
const Experiment* experiments = kExperiments;

Powered by Google App Engine
This is Rietveld 408576698