| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/common/chrome_switches.h" | 5 #include "chrome/common/chrome_switches.h" |
| 6 | 6 |
| 7 #include "base/base_switches.h" | 7 #include "base/base_switches.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 | 9 |
| 10 namespace switches { | 10 namespace switches { |
| (...skipping 1152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1163 // Specifies Android phone page loading progress bar animation. | 1163 // Specifies Android phone page loading progress bar animation. |
| 1164 const char kProgressBarAnimation[] = "progress-bar-animation"; | 1164 const char kProgressBarAnimation[] = "progress-bar-animation"; |
| 1165 | 1165 |
| 1166 // Enabled theme-color in tabbed mode of Chrome for Android. | 1166 // Enabled theme-color in tabbed mode of Chrome for Android. |
| 1167 const char kEnableThemeColorInTabbedMode[] | 1167 const char kEnableThemeColorInTabbedMode[] |
| 1168 = "enable-theme-color-in-tabbed-mode"; | 1168 = "enable-theme-color-in-tabbed-mode"; |
| 1169 #endif // defined(OS_ANDROID) | 1169 #endif // defined(OS_ANDROID) |
| 1170 | 1170 |
| 1171 #if defined(USE_ASH) | 1171 #if defined(USE_ASH) |
| 1172 const char kOpenAsh[] = "open-ash"; | 1172 const char kOpenAsh[] = "open-ash"; |
| 1173 #if defined(OS_LINUX) |
| 1174 // Enables Wayland server support when using Ash. |
| 1175 const char kEnableWaylandServer[] = "enable-wayland-server"; |
| 1176 #endif |
| 1173 #endif | 1177 #endif |
| 1174 | 1178 |
| 1175 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) | 1179 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) |
| 1176 // These flags show the man page on Linux. They are equivalent to each | 1180 // These flags show the man page on Linux. They are equivalent to each |
| 1177 // other. | 1181 // other. |
| 1178 const char kHelp[] = "help"; | 1182 const char kHelp[] = "help"; |
| 1179 const char kHelpShort[] = "h"; | 1183 const char kHelpShort[] = "h"; |
| 1180 | 1184 |
| 1181 // Specifies which password store to use (detect, default, gnome, kwallet). | 1185 // Specifies which password store to use (detect, default, gnome, kwallet). |
| 1182 const char kPasswordStore[] = "password-store"; | 1186 const char kPasswordStore[] = "password-store"; |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1381 | 1385 |
| 1382 // ----------------------------------------------------------------------------- | 1386 // ----------------------------------------------------------------------------- |
| 1383 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1387 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1384 // | 1388 // |
| 1385 // You were going to just dump your switches here, weren't you? Instead, please | 1389 // You were going to just dump your switches here, weren't you? Instead, please |
| 1386 // put them in alphabetical order above, or in order inside the appropriate | 1390 // put them in alphabetical order above, or in order inside the appropriate |
| 1387 // ifdef at the bottom. The order should match the header. | 1391 // ifdef at the bottom. The order should match the header. |
| 1388 // ----------------------------------------------------------------------------- | 1392 // ----------------------------------------------------------------------------- |
| 1389 | 1393 |
| 1390 } // namespace switches | 1394 } // namespace switches |
| OLD | NEW |