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

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

Issue 2579833005: chrome: Add support for custom crosh command. (Closed)
Patch Set: remove else Created 3 years, 11 months 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
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "build/build_config.h" 9 #include "build/build_config.h"
10 #include "ppapi/features/features.h" 10 #include "ppapi/features/features.h"
(...skipping 962 matching lines...) Expand 10 before | Expand all | Expand 10 after
973 const char kTabManagementExperimentTypeElderberry[] = 973 const char kTabManagementExperimentTypeElderberry[] =
974 "tab-management-experiment-type-elderberry"; 974 "tab-management-experiment-type-elderberry";
975 975
976 // Custom WebAPK server URL for the sake of testing. 976 // Custom WebAPK server URL for the sake of testing.
977 const char kWebApkServerUrl[] = "webapk-server-url"; 977 const char kWebApkServerUrl[] = "webapk-server-url";
978 #endif // defined(OS_ANDROID) 978 #endif // defined(OS_ANDROID)
979 979
980 #if defined(OS_CHROMEOS) 980 #if defined(OS_CHROMEOS)
981 // Enables native cups integration 981 // Enables native cups integration
982 const char kEnableNativeCups[] = "enable-native-cups"; 982 const char kEnableNativeCups[] = "enable-native-cups";
983
984 // Custom crosh command.
985 const char kCroshCommand[] = "crosh-command";
983 #endif // defined(OS_CHROMEOS) 986 #endif // defined(OS_CHROMEOS)
984 987
985 #if defined(USE_ASH) 988 #if defined(USE_ASH)
986 const char kOpenAsh[] = "open-ash"; 989 const char kOpenAsh[] = "open-ash";
987 #endif 990 #endif
988 991
989 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) 992 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS)
990 // These flags show the man page on Linux. They are equivalent to each 993 // These flags show the man page on Linux. They are equivalent to each
991 // other. 994 // other.
992 const char kHelp[] = "help"; 995 const char kHelp[] = "help";
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
1229 1232
1230 // ----------------------------------------------------------------------------- 1233 // -----------------------------------------------------------------------------
1231 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. 1234 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE.
1232 // 1235 //
1233 // You were going to just dump your switches here, weren't you? Instead, please 1236 // You were going to just dump your switches here, weren't you? Instead, please
1234 // put them in alphabetical order above, or in order inside the appropriate 1237 // put them in alphabetical order above, or in order inside the appropriate
1235 // ifdef at the bottom. The order should match the header. 1238 // ifdef at the bottom. The order should match the header.
1236 // ----------------------------------------------------------------------------- 1239 // -----------------------------------------------------------------------------
1237 1240
1238 } // namespace switches 1241 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698