| 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 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 | 236 |
| 237 const char kTopChromeMd[] = "UI Layout for the browser's top chrome"; | 237 const char kTopChromeMd[] = "UI Layout for the browser's top chrome"; |
| 238 | 238 |
| 239 const char kTopChromeMdDescription[] = | 239 const char kTopChromeMdDescription[] = |
| 240 R"*(Toggles between normal and touch (formerly "hybrid") layouts.)*"; | 240 R"*(Toggles between normal and touch (formerly "hybrid") layouts.)*"; |
| 241 | 241 |
| 242 const char kTopChromeMdMaterial[] = "Normal"; | 242 const char kTopChromeMdMaterial[] = "Normal"; |
| 243 | 243 |
| 244 const char kTopChromeMdMaterialHybrid[] = "Touch"; | 244 const char kTopChromeMdMaterialHybrid[] = "Touch"; |
| 245 | 245 |
| 246 const char kSiteDetails[] = "Site Details"; |
| 247 |
| 248 const char kSiteDetailsDescription[] = |
| 249 "Adds UI in MD Settings to view all content settings for a specific " |
| 250 "origin."; |
| 251 |
| 246 const char kSiteSettings[] = "Site settings with All sites and Site details"; | 252 const char kSiteSettings[] = "Site settings with All sites and Site details"; |
| 247 | 253 |
| 248 const char kSiteSettingsDescription[] = | 254 const char kSiteSettingsDescription[] = |
| 249 "Adds new ways of viewing Site settings."; | 255 "Adds new ways of viewing Site settings."; |
| 250 | 256 |
| 251 const char kSecondaryUiMd[] = | 257 const char kSecondaryUiMd[] = |
| 252 "Material Design in the rest of the browser's native UI"; | 258 "Material Design in the rest of the browser's native UI"; |
| 253 | 259 |
| 254 const char kSecondaryUiMdDescription[] = | 260 const char kSecondaryUiMdDescription[] = |
| 255 "Extends the --top-chrome-md setting to secondary UI (bubbles, dialogs, " | 261 "Extends the --top-chrome-md setting to secondary UI (bubbles, dialogs, " |
| (...skipping 2859 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3115 "and use them for tiles on the New Tab Page."; | 3121 "and use them for tiles on the New Tab Page."; |
| 3116 | 3122 |
| 3117 const char kLocationHardReloadName[] = | 3123 const char kLocationHardReloadName[] = |
| 3118 "Experimental change for Location.reload() to trigger a hard-reload."; | 3124 "Experimental change for Location.reload() to trigger a hard-reload."; |
| 3119 | 3125 |
| 3120 const char kLocationHardReloadDescription[] = | 3126 const char kLocationHardReloadDescription[] = |
| 3121 "Enable an experimental change for Location.reload() to trigger a " | 3127 "Enable an experimental change for Location.reload() to trigger a " |
| 3122 "hard-reload."; | 3128 "hard-reload."; |
| 3123 | 3129 |
| 3124 } // namespace flag_descriptions | 3130 } // namespace flag_descriptions |
| OLD | NEW |