OLD | NEW |
1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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/browser/flag_descriptions.h" | 5 #include "chrome/browser/flag_descriptions.h" |
6 | 6 |
7 namespace flag_descriptions { | 7 namespace flag_descriptions { |
8 | 8 |
9 // Material Design version of chrome://bookmarks | 9 // Material Design version of chrome://bookmarks |
10 | 10 |
(...skipping 3140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3151 "search engine."; | 3151 "search engine."; |
3152 | 3152 |
3153 #endif // !defined(OS_ANDROID) && !defined(OS_IOS) | 3153 #endif // !defined(OS_ANDROID) && !defined(OS_IOS) |
3154 | 3154 |
3155 #if defined(OS_MACOSX) | 3155 #if defined(OS_MACOSX) |
3156 extern const char kMacRTLName[] = "Enable RTL"; | 3156 extern const char kMacRTLName[] = "Enable RTL"; |
3157 extern const char kMacRTLDescription[] = | 3157 extern const char kMacRTLDescription[] = |
3158 "Mirrors the UI for RTL language users"; | 3158 "Mirrors the UI for RTL language users"; |
3159 #endif | 3159 #endif |
3160 | 3160 |
| 3161 #if defined(OS_CHROMEOS) |
| 3162 |
| 3163 const char kDisableNewVirtualKeyboardBehaviorName[] = |
| 3164 "New window behavior for the accessibility keyboard"; |
| 3165 const char kDisableNewVirtualKeyboardBehaviorDescription[] = |
| 3166 "Disable new window behavior for the accessibility keyboard " |
| 3167 "in non-sticky mode (do not change work area in non-sticky mode)."; |
| 3168 |
| 3169 #endif // defined(OS_CHROMEOS) |
| 3170 |
3161 } // namespace flag_descriptions | 3171 } // namespace flag_descriptions |
OLD | NEW |