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

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 1412093006: components: Add Exosphere component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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 unified diff | Download patch
OLDNEW
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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698