| 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 |
| 11 const char kEnableMaterialDesignBookmarksName[] = | 11 const char kEnableMaterialDesignBookmarksName[] = |
| 12 "Enable Material Design bookmarks"; | 12 "Enable Material Design bookmarks"; |
| 13 | 13 |
| 14 const char kEnableMaterialDesignBookmarksDescription[] = | 14 const char kEnableMaterialDesignBookmarksDescription[] = |
| 15 "If enabled, the chrome://bookmarks/ URL loads the Material Design " | 15 "If enabled, the chrome://bookmarks/ URL loads the Material Design " |
| 16 "bookmarks page."; | 16 "bookmarks page."; |
| 17 | 17 |
| 18 // Material Design version of chrome://policy | 18 // Material Design version of chrome://policy |
| 19 | 19 |
| 20 const char kEnableMaterialDesignPolicyPageName[] = | 20 const char kEnableMaterialDesignPolicyPageName[] = |
| 21 "Enable Material Design policy page"; | 21 "Enable Material Design policy page"; |
| 22 | 22 |
| 23 const char kEnableMaterialDesignPolicyPageDescription[] = | 23 const char kEnableMaterialDesignPolicyPageDescription[] = |
| 24 "If enabled, the chrome://md-policy URL loads the Material Design " | 24 "If enabled, the chrome://md-policy URL loads the Material Design " |
| 25 "policy page."; | 25 "policy page."; |
| 26 | 26 |
| 27 // Material Design version of chrome://settings | |
| 28 | |
| 29 const char kEnableMaterialDesignSettingsName[] = | |
| 30 "Enable Material Design settings"; | |
| 31 | |
| 32 const char kEnableMaterialDesignSettingsDescription[] = | |
| 33 "If enabled, the chrome://settings/ URL loads the Material Design " | |
| 34 "settings page."; | |
| 35 | |
| 36 // Material Design version of chrome://extensions | 27 // Material Design version of chrome://extensions |
| 37 | 28 |
| 38 const char kEnableMaterialDesignExtensionsName[] = | 29 const char kEnableMaterialDesignExtensionsName[] = |
| 39 "Enable Material Design extensions"; | 30 "Enable Material Design extensions"; |
| 40 | 31 |
| 41 const char kEnableMaterialDesignExtensionsDescription[] = | 32 const char kEnableMaterialDesignExtensionsDescription[] = |
| 42 "If enabled, the chrome://extensions/ URL loads the Material Design " | 33 "If enabled, the chrome://extensions/ URL loads the Material Design " |
| 43 "extensions page."; | 34 "extensions page."; |
| 44 | 35 |
| 45 // Material Design version of feedback form | 36 // Material Design version of feedback form |
| (...skipping 3161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3207 | 3198 |
| 3208 const char kDisableNewVirtualKeyboardBehaviorName[] = | 3199 const char kDisableNewVirtualKeyboardBehaviorName[] = |
| 3209 "New window behavior for the accessibility keyboard"; | 3200 "New window behavior for the accessibility keyboard"; |
| 3210 const char kDisableNewVirtualKeyboardBehaviorDescription[] = | 3201 const char kDisableNewVirtualKeyboardBehaviorDescription[] = |
| 3211 "Disable new window behavior for the accessibility keyboard " | 3202 "Disable new window behavior for the accessibility keyboard " |
| 3212 "in non-sticky mode (do not change work area in non-sticky mode)."; | 3203 "in non-sticky mode (do not change work area in non-sticky mode)."; |
| 3213 | 3204 |
| 3214 #endif // defined(OS_CHROMEOS) | 3205 #endif // defined(OS_CHROMEOS) |
| 3215 | 3206 |
| 3216 } // namespace flag_descriptions | 3207 } // namespace flag_descriptions |
| OLD | NEW |