OLD | NEW |
---|---|
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 11 matching lines...) Expand all Loading... | |
22 UI_BASE_EXPORT extern const char kDisableIconNtp[]; | 22 UI_BASE_EXPORT extern const char kDisableIconNtp[]; |
23 UI_BASE_EXPORT extern const char kDisableTouchAdjustment[]; | 23 UI_BASE_EXPORT extern const char kDisableTouchAdjustment[]; |
24 UI_BASE_EXPORT extern const char kDisableTouchDragDrop[]; | 24 UI_BASE_EXPORT extern const char kDisableTouchDragDrop[]; |
25 UI_BASE_EXPORT extern const char kDisableTouchEditing[]; | 25 UI_BASE_EXPORT extern const char kDisableTouchEditing[]; |
26 UI_BASE_EXPORT extern const char kDisableTouchFeedback[]; | 26 UI_BASE_EXPORT extern const char kDisableTouchFeedback[]; |
27 UI_BASE_EXPORT extern const char kEnableIconNtp[]; | 27 UI_BASE_EXPORT extern const char kEnableIconNtp[]; |
28 UI_BASE_EXPORT extern const char kEnableLinkDisambiguationPopup[]; | 28 UI_BASE_EXPORT extern const char kEnableLinkDisambiguationPopup[]; |
29 UI_BASE_EXPORT extern const char kEnableTouchDragDrop[]; | 29 UI_BASE_EXPORT extern const char kEnableTouchDragDrop[]; |
30 UI_BASE_EXPORT extern const char kEnableTouchEditing[]; | 30 UI_BASE_EXPORT extern const char kEnableTouchEditing[]; |
31 UI_BASE_EXPORT extern const char kLang[]; | 31 UI_BASE_EXPORT extern const char kLang[]; |
32 | |
33 #if defined(ENABLE_TOPCHROME_MD) | |
34 UI_BASE_EXPORT extern const char kTopChromeMD[]; | |
35 UI_BASE_EXPORT extern const char kTopChromeMDMaterial[]; | |
36 UI_BASE_EXPORT extern const char kTopChromeMDMaterialHybrid[]; | |
37 UI_BASE_EXPORT extern const char kTopChromeMDNonMaterial[]; | |
Dan Beam
2015/06/24 21:55:10
I'm trying to combine MD-related flags. Why do we
tdanderson
2015/06/25 16:48:48
As discussed offline, this is needed for our use c
Dan Beam
2015/06/25 17:05:35
Yeah, I understand now why you need them. Do you
bruthig
2015/06/25 17:49:49
As is the convention for these switches, the docum
Dan Beam
2015/06/25 18:11:43
you're right and I just probably haven't seen that
| |
38 #endif // defind(ENABLE_TOPCHROME_MD) | |
39 | |
32 UI_BASE_EXPORT extern const char kViewerConnect[]; | 40 UI_BASE_EXPORT extern const char kViewerConnect[]; |
33 | 41 |
34 } // namespace switches | 42 } // namespace switches |
35 | 43 |
36 #endif // UI_BASE_UI_BASE_SWITCHES_H_ | 44 #endif // UI_BASE_UI_BASE_SWITCHES_H_ |
OLD | NEW |