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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 | 53 |
54 // Material Design version of feedback form | 54 // Material Design version of feedback form |
55 | 55 |
56 const char kEnableMaterialDesignFeedbackName[] = | 56 const char kEnableMaterialDesignFeedbackName[] = |
57 "Enable Material Design feedback"; | 57 "Enable Material Design feedback"; |
58 | 58 |
59 const char kEnableMaterialDesignFeedbackDescription[] = | 59 const char kEnableMaterialDesignFeedbackDescription[] = |
60 "If enabled, reporting an issue will load the Material Design feedback " | 60 "If enabled, reporting an issue will load the Material Design feedback " |
61 "UI."; | 61 "UI."; |
62 | 62 |
| 63 // Material design of the Incognito NTP. |
| 64 |
| 65 extern const char kEnableMaterialDesignIncognitoNTPName[] = |
| 66 "Material Design Incognito NTP."; |
| 67 |
| 68 extern const char kEnableMaterialDesignIncognitoNTPDescription[] = |
| 69 "If enabled, the Incognito New Tab page uses the new material design " |
| 70 "with a better readable text."; |
| 71 |
63 // Report URL to SafeSearch | 72 // Report URL to SafeSearch |
64 | 73 |
65 const char kSafeSearchUrlReportingName[] = "SafeSearch URLs reporting."; | 74 const char kSafeSearchUrlReportingName[] = "SafeSearch URLs reporting."; |
66 | 75 |
67 const char kSafeSearchUrlReportingDescription[] = | 76 const char kSafeSearchUrlReportingDescription[] = |
68 "If enabled, inappropriate URLs can be reported back to SafeSearch."; | 77 "If enabled, inappropriate URLs can be reported back to SafeSearch."; |
69 | 78 |
70 // Device scale factor change in content crbug.com/485650. | 79 // Device scale factor change in content crbug.com/485650. |
71 | 80 |
72 const char kEnableUseZoomForDsfName[] = | 81 const char kEnableUseZoomForDsfName[] = |
(...skipping 2827 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2900 const char kEnableEhvInputName[] = | 2909 const char kEnableEhvInputName[] = |
2901 "Emoji, handwriting and voice input on opt-in IME menu"; | 2910 "Emoji, handwriting and voice input on opt-in IME menu"; |
2902 | 2911 |
2903 const char kEnableEhvInputDescription[] = | 2912 const char kEnableEhvInputDescription[] = |
2904 "Enable access to emoji, handwriting and voice input form opt-in IME " | 2913 "Enable access to emoji, handwriting and voice input form opt-in IME " |
2905 "menu."; | 2914 "menu."; |
2906 | 2915 |
2907 #endif // #if defined(OS_CHROMEOS) | 2916 #endif // #if defined(OS_CHROMEOS) |
2908 | 2917 |
2909 } // namespace flag_descriptions | 2918 } // namespace flag_descriptions |
OLD | NEW |