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

Side by Side Diff: ui/base/ui_base_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 ui/base. 5 // Defines all the command-line switches used by ui/base.
6 6
7 #ifndef UI_BASE_UI_BASE_SWITCHES_H_ 7 #ifndef UI_BASE_UI_BASE_SWITCHES_H_
8 #define UI_BASE_UI_BASE_SWITCHES_H_ 8 #define UI_BASE_UI_BASE_SWITCHES_H_
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 12 matching lines...) Expand all
23 UI_EXPORT extern const char kHighlightMissingScaledResources[]; 23 UI_EXPORT extern const char kHighlightMissingScaledResources[];
24 UI_EXPORT extern const char kLang[]; 24 UI_EXPORT extern const char kLang[];
25 UI_EXPORT extern const char kLocalePak[]; 25 UI_EXPORT extern const char kLocalePak[];
26 UI_EXPORT extern const char kNoMessageBox[]; 26 UI_EXPORT extern const char kNoMessageBox[];
27 UI_EXPORT extern const char kTouchOptimizedUI[]; 27 UI_EXPORT extern const char kTouchOptimizedUI[];
28 UI_EXPORT extern const char kTouchOptimizedUIAuto[]; 28 UI_EXPORT extern const char kTouchOptimizedUIAuto[];
29 UI_EXPORT extern const char kTouchOptimizedUIDisabled[]; 29 UI_EXPORT extern const char kTouchOptimizedUIDisabled[];
30 UI_EXPORT extern const char kTouchOptimizedUIEnabled[]; 30 UI_EXPORT extern const char kTouchOptimizedUIEnabled[];
31 UI_EXPORT extern const char kTouchSideBezels[]; 31 UI_EXPORT extern const char kTouchSideBezels[];
32 32
33 #if defined(OS_ANDROID)
34 UI_EXPORT extern const char kTabletUI[];
35 #endif
36
33 #if defined(USE_XI2_MT) 37 #if defined(USE_XI2_MT)
34 UI_EXPORT extern const char kTouchCalibration[]; 38 UI_EXPORT extern const char kTouchCalibration[];
35 #endif 39 #endif
36 40
37 } // namespace switches 41 } // namespace switches
38 42
39 #endif // UI_BASE_UI_BASE_SWITCHES_H_ 43 #endif // UI_BASE_UI_BASE_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698