| 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 const char kBrowserSideNavigationName[] = "Enable browser side navigation"; |
| 10 |
| 11 const char kBrowserSideNavigationDescription[] = |
| 12 "Enable browser side navigation (aka PlzNaviate)."; |
| 13 |
| 9 // Material Design version of chrome://bookmarks | 14 // Material Design version of chrome://bookmarks |
| 10 | 15 |
| 11 const char kEnableMaterialDesignBookmarksName[] = | 16 const char kEnableMaterialDesignBookmarksName[] = |
| 12 "Enable Material Design bookmarks"; | 17 "Enable Material Design bookmarks"; |
| 13 | 18 |
| 14 const char kEnableMaterialDesignBookmarksDescription[] = | 19 const char kEnableMaterialDesignBookmarksDescription[] = |
| 15 "If enabled, the chrome://bookmarks/ URL loads the Material Design " | 20 "If enabled, the chrome://bookmarks/ URL loads the Material Design " |
| 16 "bookmarks page."; | 21 "bookmarks page."; |
| 17 | 22 |
| 18 // Material Design version of chrome://policy | 23 // Material Design version of chrome://policy |
| (...skipping 3186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3205 | 3210 |
| 3206 const char kDisableNewVirtualKeyboardBehaviorName[] = | 3211 const char kDisableNewVirtualKeyboardBehaviorName[] = |
| 3207 "New window behavior for the accessibility keyboard"; | 3212 "New window behavior for the accessibility keyboard"; |
| 3208 const char kDisableNewVirtualKeyboardBehaviorDescription[] = | 3213 const char kDisableNewVirtualKeyboardBehaviorDescription[] = |
| 3209 "Disable new window behavior for the accessibility keyboard " | 3214 "Disable new window behavior for the accessibility keyboard " |
| 3210 "in non-sticky mode (do not change work area in non-sticky mode)."; | 3215 "in non-sticky mode (do not change work area in non-sticky mode)."; |
| 3211 | 3216 |
| 3212 #endif // defined(OS_CHROMEOS) | 3217 #endif // defined(OS_CHROMEOS) |
| 3213 | 3218 |
| 3214 } // namespace flag_descriptions | 3219 } // namespace flag_descriptions |
| OLD | NEW |