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 1165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1176 // Specifies Android phone page loading progress bar animation. | 1176 // Specifies Android phone page loading progress bar animation. |
1177 const char kProgressBarAnimation[] = "progress-bar-animation"; | 1177 const char kProgressBarAnimation[] = "progress-bar-animation"; |
1178 | 1178 |
1179 // Enabled theme-color in tabbed mode of Chrome for Android. | 1179 // Enabled theme-color in tabbed mode of Chrome for Android. |
1180 const char kEnableThemeColorInTabbedMode[] | 1180 const char kEnableThemeColorInTabbedMode[] |
1181 = "enable-theme-color-in-tabbed-mode"; | 1181 = "enable-theme-color-in-tabbed-mode"; |
1182 #endif // defined(OS_ANDROID) | 1182 #endif // defined(OS_ANDROID) |
1183 | 1183 |
1184 #if defined(USE_ASH) | 1184 #if defined(USE_ASH) |
1185 const char kOpenAsh[] = "open-ash"; | 1185 const char kOpenAsh[] = "open-ash"; |
| 1186 #if defined(OS_LINUX) |
| 1187 // Enables Wayland server support when using Ash. |
| 1188 const char kEnableWaylandServer[] = "enable-wayland-server"; |
| 1189 #endif |
1186 #endif | 1190 #endif |
1187 | 1191 |
1188 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) | 1192 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) |
1189 // These flags show the man page on Linux. They are equivalent to each | 1193 // These flags show the man page on Linux. They are equivalent to each |
1190 // other. | 1194 // other. |
1191 const char kHelp[] = "help"; | 1195 const char kHelp[] = "help"; |
1192 const char kHelpShort[] = "h"; | 1196 const char kHelpShort[] = "h"; |
1193 | 1197 |
1194 // Specifies which password store to use (detect, default, gnome, kwallet). | 1198 // Specifies which password store to use (detect, default, gnome, kwallet). |
1195 const char kPasswordStore[] = "password-store"; | 1199 const char kPasswordStore[] = "password-store"; |
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1394 | 1398 |
1395 // ----------------------------------------------------------------------------- | 1399 // ----------------------------------------------------------------------------- |
1396 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1400 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1397 // | 1401 // |
1398 // You were going to just dump your switches here, weren't you? Instead, please | 1402 // You were going to just dump your switches here, weren't you? Instead, please |
1399 // put them in alphabetical order above, or in order inside the appropriate | 1403 // put them in alphabetical order above, or in order inside the appropriate |
1400 // ifdef at the bottom. The order should match the header. | 1404 // ifdef at the bottom. The order should match the header. |
1401 // ----------------------------------------------------------------------------- | 1405 // ----------------------------------------------------------------------------- |
1402 | 1406 |
1403 } // namespace switches | 1407 } // namespace switches |
OLD | NEW |