Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(910)

Side by Side Diff: chrome/browser/flag_descriptions.cc

Issue 2814743009: Make adjustable large cursor enabled by default (Closed)
Patch Set: Rebase. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 2767 matching lines...) Expand 10 before | Expand all | Expand 10 after
2778 #if defined(OS_ANDROID) 2778 #if defined(OS_ANDROID)
2779 2779
2780 const char kEnableCustomFeedbackUiName[] = "Enable Custom Feedback UI"; 2780 const char kEnableCustomFeedbackUiName[] = "Enable Custom Feedback UI";
2781 2781
2782 const char kEnableCustomFeedbackUiDescription[] = 2782 const char kEnableCustomFeedbackUiDescription[] =
2783 "Enables a custom feedback UI when submitting feedback through Google " 2783 "Enables a custom feedback UI when submitting feedback through Google "
2784 "Feedback. Works with Google Play Services v10.2+"; 2784 "Feedback. Works with Google Play Services v10.2+";
2785 2785
2786 #endif // defined(OS_ANDROID) 2786 #endif // defined(OS_ANDROID)
2787 2787
2788 const char kEnableAdjustableLargeCursorName[] =
2789 "Enable adjustable large cursor";
2790
2791 const char kEnableAdjustableLargeCursorDescription[] =
2792 "Make size of accessibility large cursor adjustable.";
2793
2794 #if defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || \ 2788 #if defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || \
2795 defined(OS_WIN) 2789 defined(OS_WIN)
2796 2790
2797 const char kOmniboxEntitySuggestionsName[] = "Omnibox entity suggestions"; 2791 const char kOmniboxEntitySuggestionsName[] = "Omnibox entity suggestions";
2798 2792
2799 const char kOmniboxEntitySuggestionsDescription[] = 2793 const char kOmniboxEntitySuggestionsDescription[] =
2800 "Enable receiving entity suggestions in Omnibox."; 2794 "Enable receiving entity suggestions in Omnibox.";
2801 2795
2802 const char kPauseBackgroundTabsName[] = "Pause background tabs"; 2796 const char kPauseBackgroundTabsName[] = "Pause background tabs";
2803 const char kPauseBackgroundTabsDescription[] = 2797 const char kPauseBackgroundTabsDescription[] =
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
3033 #endif // defined(OS_ANDROID) 3027 #endif // defined(OS_ANDROID)
3034 3028
3035 const char kEnableIdleTimeSpellCheckingName[] = 3029 const char kEnableIdleTimeSpellCheckingName[] =
3036 "Enable idle time spell checker"; 3030 "Enable idle time spell checker";
3037 3031
3038 const char kEnableIdleTimeSpellCheckingDescription[] = 3032 const char kEnableIdleTimeSpellCheckingDescription[] =
3039 "Make spell-checking code run only when the browser is idle, so that input " 3033 "Make spell-checking code run only when the browser is idle, so that input "
3040 "latency is reduced, especially when editing long articles, emails, etc."; 3034 "latency is reduced, especially when editing long articles, emails, etc.";
3041 3035
3042 } // namespace flag_descriptions 3036 } // namespace flag_descriptions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698