| 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 2188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2199 // Data Use | 2199 // Data Use |
| 2200 | 2200 |
| 2201 // Update Menu Item Flags | 2201 // Update Menu Item Flags |
| 2202 | 2202 |
| 2203 const char kUpdateMenuItemName[] = "Force show update menu item"; | 2203 const char kUpdateMenuItemName[] = "Force show update menu item"; |
| 2204 | 2204 |
| 2205 const char kUpdateMenuItemDescription[] = | 2205 const char kUpdateMenuItemDescription[] = |
| 2206 R"*(When enabled, an "Update Chrome" item will be shown in the app )*" | 2206 R"*(When enabled, an "Update Chrome" item will be shown in the app )*" |
| 2207 R"*(menu.)*"; | 2207 R"*(menu.)*"; |
| 2208 | 2208 |
| 2209 const char kUpdateMenuItemSummaryName[] = "Update menu item summary"; | 2209 const char kUpdateMenuItemCustomSummaryDescription[] = |
| 2210 "When this flag and the force show update menu item flag are enabled, a " |
| 2211 "custom summary string will be displayed below the update menu item."; |
| 2210 | 2212 |
| 2211 const char kUpdateMenuItemSummaryDescription[] = | 2213 const char kUpdateMenuItemCustomSummaryName[] = |
| 2212 "When this flag and the force show update menu item flag are enabled, a " | 2214 "Update menu item custom summary"; |
| 2213 "summary will be displayed below the update menu item."; | |
| 2214 | |
| 2215 const char kUpdateMenuItemNoSummary[] = "No summary"; | |
| 2216 | |
| 2217 const char kUpdateMenuItemDefaultSummary[] = "Default summary"; | |
| 2218 | |
| 2219 const char kUpdateMenuItemNewFeaturesSummary[] = "New features summary"; | |
| 2220 | |
| 2221 const char kUpdateMenuItemCustomSummary[] = "Custom summary"; | |
| 2222 | 2215 |
| 2223 const char kUpdateMenuBadgeName[] = "Force show update menu badge"; | 2216 const char kUpdateMenuBadgeName[] = "Force show update menu badge"; |
| 2224 | 2217 |
| 2225 const char kUpdateMenuBadgeDescription[] = | 2218 const char kUpdateMenuBadgeDescription[] = |
| 2226 "When enabled, an update badge will be shown on the app menu button."; | 2219 "When enabled, an update badge will be shown on the app menu button."; |
| 2227 | 2220 |
| 2228 const char kSetMarketUrlForTestingName[] = "Set market URL for testing"; | 2221 const char kSetMarketUrlForTestingName[] = "Set market URL for testing"; |
| 2229 | 2222 |
| 2230 const char kSetMarketUrlForTestingDescription[] = | 2223 const char kSetMarketUrlForTestingDescription[] = |
| 2231 "When enabled, sets the market URL for use in testing the update menu " | 2224 "When enabled, sets the market URL for use in testing the update menu " |
| (...skipping 775 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3007 const char kEnableCopylessPasteDescription[] = | 3000 const char kEnableCopylessPasteDescription[] = |
| 3008 "Provide suggestions for text input, based on your recent context. For " | 3001 "Provide suggestions for text input, based on your recent context. For " |
| 3009 "example, if you looked at a restaurant website and switched to the Maps " | 3002 "example, if you looked at a restaurant website and switched to the Maps " |
| 3010 "app, the keyboard would offer the name of that restaurant as a suggestion " | 3003 "app, the keyboard would offer the name of that restaurant as a suggestion " |
| 3011 "to enter into the search bar. The data is indexed locally, and never sent " | 3004 "to enter into the search bar. The data is indexed locally, and never sent " |
| 3012 "to the server. It's disabled in incognito mode."; | 3005 "to the server. It's disabled in incognito mode."; |
| 3013 | 3006 |
| 3014 #endif // defined(OS_ANDROID) | 3007 #endif // defined(OS_ANDROID) |
| 3015 | 3008 |
| 3016 } // namespace flag_descriptions | 3009 } // namespace flag_descriptions |
| OLD | NEW |