| 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 2598 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2900 const char kEnableEhvInputName[] = | 2905 const char kEnableEhvInputName[] = |
| 2901 "Emoji, handwriting and voice input on opt-in IME menu"; | 2906 "Emoji, handwriting and voice input on opt-in IME menu"; |
| 2902 | 2907 |
| 2903 const char kEnableEhvInputDescription[] = | 2908 const char kEnableEhvInputDescription[] = |
| 2904 "Enable access to emoji, handwriting and voice input form opt-in IME " | 2909 "Enable access to emoji, handwriting and voice input form opt-in IME " |
| 2905 "menu."; | 2910 "menu."; |
| 2906 | 2911 |
| 2907 #endif // #if defined(OS_CHROMEOS) | 2912 #endif // #if defined(OS_CHROMEOS) |
| 2908 | 2913 |
| 2909 } // namespace flag_descriptions | 2914 } // namespace flag_descriptions |
| OLD | NEW |