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 1138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1149 | 1149 |
1150 // Enable Physical Web scanning. | 1150 // Enable Physical Web scanning. |
1151 const char kEnablePhysicalWeb[] = "enable-physical-web"; | 1151 const char kEnablePhysicalWeb[] = "enable-physical-web"; |
1152 | 1152 |
1153 // Specifies Android phone page loading progress bar animation. | 1153 // Specifies Android phone page loading progress bar animation. |
1154 const char kProgressBarAnimation[] = "progress-bar-animation"; | 1154 const char kProgressBarAnimation[] = "progress-bar-animation"; |
1155 #endif // defined(OS_ANDROID) | 1155 #endif // defined(OS_ANDROID) |
1156 | 1156 |
1157 #if defined(USE_ASH) | 1157 #if defined(USE_ASH) |
1158 const char kOpenAsh[] = "open-ash"; | 1158 const char kOpenAsh[] = "open-ash"; |
| 1159 #if defined(OS_LINUX) |
| 1160 // Enables Wayland server support when using Ash. |
| 1161 const char kEnableWaylandServer[] = "enable-wayland-server"; |
| 1162 #endif |
1159 #endif | 1163 #endif |
1160 | 1164 |
1161 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) | 1165 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) |
1162 // These flags show the man page on Linux. They are equivalent to each | 1166 // These flags show the man page on Linux. They are equivalent to each |
1163 // other. | 1167 // other. |
1164 const char kHelp[] = "help"; | 1168 const char kHelp[] = "help"; |
1165 const char kHelpShort[] = "h"; | 1169 const char kHelpShort[] = "h"; |
1166 | 1170 |
1167 // Specifies which password store to use (detect, default, gnome, kwallet). | 1171 // Specifies which password store to use (detect, default, gnome, kwallet). |
1168 const char kPasswordStore[] = "password-store"; | 1172 const char kPasswordStore[] = "password-store"; |
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1371 | 1375 |
1372 // ----------------------------------------------------------------------------- | 1376 // ----------------------------------------------------------------------------- |
1373 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1377 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1374 // | 1378 // |
1375 // You were going to just dump your switches here, weren't you? Instead, please | 1379 // You were going to just dump your switches here, weren't you? Instead, please |
1376 // put them in alphabetical order above, or in order inside the appropriate | 1380 // put them in alphabetical order above, or in order inside the appropriate |
1377 // ifdef at the bottom. The order should match the header. | 1381 // ifdef at the bottom. The order should match the header. |
1378 // ----------------------------------------------------------------------------- | 1382 // ----------------------------------------------------------------------------- |
1379 | 1383 |
1380 } // namespace switches | 1384 } // namespace switches |
OLD | NEW |