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 const char kBrowserSideNavigationName[] = "Enable browser side navigation"; | 9 const char kBrowserSideNavigationName[] = "Enable browser side navigation"; |
10 | 10 |
(...skipping 3195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3206 const char kOneGoogleBarOnLocalNtpDescription[] = | 3206 const char kOneGoogleBarOnLocalNtpDescription[] = |
3207 "Show a OneGoogleBar on the local New Tab page if Google is the default " | 3207 "Show a OneGoogleBar on the local New Tab page if Google is the default " |
3208 "search engine."; | 3208 "search engine."; |
3209 | 3209 |
3210 #endif // !defined(OS_ANDROID) && !defined(OS_IOS) | 3210 #endif // !defined(OS_ANDROID) && !defined(OS_IOS) |
3211 | 3211 |
3212 #if defined(OS_MACOSX) | 3212 #if defined(OS_MACOSX) |
3213 extern const char kMacRTLName[] = "Enable RTL"; | 3213 extern const char kMacRTLName[] = "Enable RTL"; |
3214 extern const char kMacRTLDescription[] = | 3214 extern const char kMacRTLDescription[] = |
3215 "Mirrors the UI for RTL language users"; | 3215 "Mirrors the UI for RTL language users"; |
| 3216 extern const char kMacTouchBarName[] = "Hardware TouchBar"; |
| 3217 extern const char kMacTouchBarDescription[] = |
| 3218 "Control the use of the TouchBar."; |
3216 #endif | 3219 #endif |
3217 | 3220 |
3218 #if defined(OS_CHROMEOS) | 3221 #if defined(OS_CHROMEOS) |
3219 | 3222 |
3220 const char kDisableNewVirtualKeyboardBehaviorName[] = | 3223 const char kDisableNewVirtualKeyboardBehaviorName[] = |
3221 "New window behavior for the accessibility keyboard"; | 3224 "New window behavior for the accessibility keyboard"; |
3222 const char kDisableNewVirtualKeyboardBehaviorDescription[] = | 3225 const char kDisableNewVirtualKeyboardBehaviorDescription[] = |
3223 "Disable new window behavior for the accessibility keyboard " | 3226 "Disable new window behavior for the accessibility keyboard " |
3224 "in non-sticky mode (do not change work area in non-sticky mode)."; | 3227 "in non-sticky mode (do not change work area in non-sticky mode)."; |
3225 | 3228 |
3226 const char kUiDevToolsName[] = "Enable native UI inspection"; | 3229 const char kUiDevToolsName[] = "Enable native UI inspection"; |
3227 const char kUiDevToolsDescription[] = | 3230 const char kUiDevToolsDescription[] = |
3228 "Enables inspection of native UI elements. For local inspection use " | 3231 "Enables inspection of native UI elements. For local inspection use " |
3229 "chrome://inspect#other"; | 3232 "chrome://inspect#other"; |
3230 | 3233 |
3231 #endif // defined(OS_CHROMEOS) | 3234 #endif // defined(OS_CHROMEOS) |
3232 | 3235 |
3233 } // namespace flag_descriptions | 3236 } // namespace flag_descriptions |
OLD | NEW |