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

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

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 // Defines the shared command-line switches used by code in the Chrome 5 // Defines the shared command-line switches used by code in the Chrome
6 // directory that don't have anywhere more specific to go. 6 // directory that don't have anywhere more specific to go.
7 7
8 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ 8 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_
9 #define CHROME_COMMON_CHROME_SWITCHES_H_ 9 #define CHROME_COMMON_CHROME_SWITCHES_H_
10 10
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 extern const char kMarketUrlForTesting[]; 284 extern const char kMarketUrlForTesting[];
285 extern const char kNtpSwitchToExistingTab[]; 285 extern const char kNtpSwitchToExistingTab[];
286 extern const char kProgressBarAnimation[]; 286 extern const char kProgressBarAnimation[];
287 extern const char kTabManagementExperimentTypeDisabled[]; 287 extern const char kTabManagementExperimentTypeDisabled[];
288 extern const char kTabManagementExperimentTypeElderberry[]; 288 extern const char kTabManagementExperimentTypeElderberry[];
289 extern const char kWebApkServerUrl[]; 289 extern const char kWebApkServerUrl[];
290 #endif // defined(OS_ANDROID) 290 #endif // defined(OS_ANDROID)
291 291
292 #if defined(OS_CHROMEOS) 292 #if defined(OS_CHROMEOS)
293 extern const char kEnableNativeCups[]; 293 extern const char kEnableNativeCups[];
294 extern const char kCroshCommand[];
294 #endif // defined(OS_CHROMEOS) 295 #endif // defined(OS_CHROMEOS)
295 296
296 #if defined(USE_ASH) 297 #if defined(USE_ASH)
297 extern const char kOpenAsh[]; 298 extern const char kOpenAsh[];
298 #endif 299 #endif
299 300
300 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) 301 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS)
301 extern const char kHelp[]; 302 extern const char kHelp[];
302 extern const char kHelpShort[]; 303 extern const char kHelpShort[];
303 extern const char kPasswordStore[]; 304 extern const char kPasswordStore[];
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 #if defined(OS_WIN) 381 #if defined(OS_WIN)
381 bool GDITextPrintingEnabled(); 382 bool GDITextPrintingEnabled();
382 #endif 383 #endif
383 384
384 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 385 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
385 // alphabetical order, or in one of the ifdefs (also in order in each section). 386 // alphabetical order, or in one of the ifdefs (also in order in each section).
386 387
387 } // namespace switches 388 } // namespace switches
388 389
389 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 390 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698