Chromium Code Reviews| 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 3121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 3132 "Enable an experimental change for Location.reload() to trigger a " | 3132 "Enable an experimental change for Location.reload() to trigger a " |
| 3133 "hard-reload."; | 3133 "hard-reload."; |
| 3134 | 3134 |
| 3135 const char kCaptureThumbnailOnLoadFinishedName[] = | 3135 const char kCaptureThumbnailOnLoadFinishedName[] = |
| 3136 "Capture page thumbnail on load finished"; | 3136 "Capture page thumbnail on load finished"; |
| 3137 | 3137 |
| 3138 const char kCaptureThumbnailOnLoadFinishedDescription[] = | 3138 const char kCaptureThumbnailOnLoadFinishedDescription[] = |
| 3139 "Capture a page thumbnail (for use on the New Tab page) when the page load " | 3139 "Capture a page thumbnail (for use on the New Tab page) when the page load " |
| 3140 "finishes, in addition to other times a thumbnail may be captured."; | 3140 "finishes, in addition to other times a thumbnail may be captured."; |
| 3141 | 3141 |
| 3142 const char kUseGoogleLocalNtpName[] = "Enable using the Google local NTP"; | |
| 3143 const char kUseGoogleLocalNtpDescription[] = | |
| 3144 "Use the local NTP if Google is the default search engine."; | |
|
sfiera
2017/05/11 10:39:22
For the descriptions, I think it would be better t
Marc Treib
2017/05/11 11:39:54
Done.
| |
| 3145 | |
| 3146 const char kOneGoogleBarOnLocalNtpName[] = | |
| 3147 "Enable the OneGoogleBar on the local NTP"; | |
| 3148 const char kOneGoogleBarOnLocalNtpDescription[] = | |
| 3149 "Show a OneGoogleBar on the local NTP if Google is the default search " | |
| 3150 "engine."; | |
| 3151 | |
| 3142 } // namespace flag_descriptions | 3152 } // namespace flag_descriptions |
| OLD | NEW |