| 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 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 "eligibility requirements for showing app banners, such as having a " | 282 "eligibility requirements for showing app banners, such as having a " |
| 283 "manifest, are met."; | 283 "manifest, are met."; |
| 284 | 284 |
| 285 #if defined(OS_ANDROID) | 285 #if defined(OS_ANDROID) |
| 286 | 286 |
| 287 const char kAccessibilityTabSwitcherName[] = "Accessibility Tab Switcher"; | 287 const char kAccessibilityTabSwitcherName[] = "Accessibility Tab Switcher"; |
| 288 | 288 |
| 289 const char kAccessibilityTabSwitcherDescription[] = | 289 const char kAccessibilityTabSwitcherDescription[] = |
| 290 "Enable the accessibility tab switcher for Android."; | 290 "Enable the accessibility tab switcher for Android."; |
| 291 | 291 |
| 292 const char kAndroidAutofillAccessibilityName[] = "Autofill Accessibility"; |
| 293 |
| 294 const char kAndroidAutofillAccessibilityDescription[] = |
| 295 "Enable accessibility for autofill popup."; |
| 296 |
| 292 const char kEnablePhysicalWebName[] = "Enable the Physical Web."; | 297 const char kEnablePhysicalWebName[] = "Enable the Physical Web."; |
| 293 | 298 |
| 294 const char kEnablePhysicalWebDescription[] = | 299 const char kEnablePhysicalWebDescription[] = |
| 295 "Enable scanning for URLs from Physical Web objects."; | 300 "Enable scanning for URLs from Physical Web objects."; |
| 296 | 301 |
| 297 #endif // defined(OS_ANDROID) | 302 #endif // defined(OS_ANDROID) |
| 298 | 303 |
| 299 const char kTouchEventsName[] = "Touch Events API"; | 304 const char kTouchEventsName[] = "Touch Events API"; |
| 300 | 305 |
| 301 const char kTouchEventsDescription[] = | 306 const char kTouchEventsDescription[] = |
| (...skipping 2605 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2907 const char kEnableEhvInputName[] = | 2912 const char kEnableEhvInputName[] = |
| 2908 "Emoji, handwriting and voice input on opt-in IME menu"; | 2913 "Emoji, handwriting and voice input on opt-in IME menu"; |
| 2909 | 2914 |
| 2910 const char kEnableEhvInputDescription[] = | 2915 const char kEnableEhvInputDescription[] = |
| 2911 "Enable access to emoji, handwriting and voice input form opt-in IME " | 2916 "Enable access to emoji, handwriting and voice input form opt-in IME " |
| 2912 "menu."; | 2917 "menu."; |
| 2913 | 2918 |
| 2914 #endif // #if defined(OS_CHROMEOS) | 2919 #endif // #if defined(OS_CHROMEOS) |
| 2915 | 2920 |
| 2916 } // namespace flag_descriptions | 2921 } // namespace flag_descriptions |
| OLD | NEW |