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

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

Issue 50603005: Add cross-platform API to get the form factor of the device (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: small formatting changes Created 7 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 // Defines all the command-line switches used by Chrome. 5 // Defines all the command-line switches used by Chrome.
6 6
7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ 7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_
8 #define CHROME_COMMON_CHROME_SWITCHES_H_ 8 #define CHROME_COMMON_CHROME_SWITCHES_H_
9 9
10 #include "build/build_config.h" 10 #include "build/build_config.h"
(...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after
417 extern const char kEnableSpdyProxyAuth[]; 417 extern const char kEnableSpdyProxyAuth[];
418 #endif // defined(OS_ANDROID) || defined(OS_IOS) 418 #endif // defined(OS_ANDROID) || defined(OS_IOS)
419 419
420 #if defined(OS_ANDROID) 420 #if defined(OS_ANDROID)
421 extern const char kDisableAddToHomescreen[]; 421 extern const char kDisableAddToHomescreen[];
422 extern const char kDisableNewNTP[]; 422 extern const char kDisableNewNTP[];
423 extern const char kEnableAccessibilityTabSwitcher[]; 423 extern const char kEnableAccessibilityTabSwitcher[];
424 extern const char kEnableAddToHomescreen[]; 424 extern const char kEnableAddToHomescreen[];
425 extern const char kEnableNewNTP[]; 425 extern const char kEnableNewNTP[];
426 extern const char kEnableTranslate[]; 426 extern const char kEnableTranslate[];
427 extern const char kTabletUI[];
428 extern const char kEnableCast[]; 427 extern const char kEnableCast[];
429 #endif 428 #endif
430 429
431 #if defined(USE_ASH) 430 #if defined(USE_ASH)
432 extern const char kOpenAsh[]; 431 extern const char kOpenAsh[];
433 #endif 432 #endif
434 433
435 #if defined(OS_POSIX) 434 #if defined(OS_POSIX)
436 extern const char kEnableCrashReporterForTesting[]; 435 extern const char kEnableCrashReporterForTesting[];
437 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) 436 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS)
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
477 #else 476 #else
478 extern const char kEnablePrintPreview[]; 477 extern const char kEnablePrintPreview[];
479 #endif 478 #endif
480 479
481 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 480 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
482 // alphabetical order, or in one of the ifdefs (also in order in each section). 481 // alphabetical order, or in one of the ifdefs (also in order in each section).
483 482
484 } // namespace switches 483 } // namespace switches
485 484
486 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 485 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698