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

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

Issue 2579833005: chrome: Add support for custom crosh command. (Closed)
Patch Set: Created 4 years 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 #include "build/build_config.h" 9 #include "build/build_config.h"
10 #include "ppapi/features/features.h" 10 #include "ppapi/features/features.h"
(...skipping 969 matching lines...) Expand 10 before | Expand all | Expand 10 after
980 const char kTabManagementExperimentTypeElderberry[] = 980 const char kTabManagementExperimentTypeElderberry[] =
981 "tab-management-experiment-type-elderberry"; 981 "tab-management-experiment-type-elderberry";
982 982
983 // Custom WebAPK server URL for the sake of testing. 983 // Custom WebAPK server URL for the sake of testing.
984 const char kWebApkServerUrl[] = "webapk-server-url"; 984 const char kWebApkServerUrl[] = "webapk-server-url";
985 #endif // defined(OS_ANDROID) 985 #endif // defined(OS_ANDROID)
986 986
987 #if defined(OS_CHROMEOS) 987 #if defined(OS_CHROMEOS)
988 // Enables native cups integration 988 // Enables native cups integration
989 const char kEnableNativeCups[] = "enable-native-cups"; 989 const char kEnableNativeCups[] = "enable-native-cups";
990
991 // Custom crosh command.
992 const char kCroshCommand[] = "crosh-command";
990 #endif // defined(OS_CHROMEOS) 993 #endif // defined(OS_CHROMEOS)
991 994
992 #if defined(USE_ASH) 995 #if defined(USE_ASH)
993 const char kOpenAsh[] = "open-ash"; 996 const char kOpenAsh[] = "open-ash";
994 #endif 997 #endif
995 998
996 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) 999 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS)
997 // These flags show the man page on Linux. They are equivalent to each 1000 // These flags show the man page on Linux. They are equivalent to each
998 // other. 1001 // other.
999 const char kHelp[] = "help"; 1002 const char kHelp[] = "help";
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
1236 1239
1237 // ----------------------------------------------------------------------------- 1240 // -----------------------------------------------------------------------------
1238 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. 1241 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE.
1239 // 1242 //
1240 // You were going to just dump your switches here, weren't you? Instead, please 1243 // You were going to just dump your switches here, weren't you? Instead, please
1241 // put them in alphabetical order above, or in order inside the appropriate 1244 // put them in alphabetical order above, or in order inside the appropriate
1242 // ifdef at the bottom. The order should match the header. 1245 // ifdef at the bottom. The order should match the header.
1243 // ----------------------------------------------------------------------------- 1246 // -----------------------------------------------------------------------------
1244 1247
1245 } // namespace switches 1248 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698