| 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 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 5 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| 6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| 7 | 7 |
| 8 // Includes needed for macros allowing conditional compilation of some strings. | 8 // Includes needed for macros allowing conditional compilation of some strings. |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 #include "build/buildflag.h" | 10 #include "build/buildflag.h" |
| (...skipping 3390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3401 extern const char kLocationHardReloadName[]; | 3401 extern const char kLocationHardReloadName[]; |
| 3402 | 3402 |
| 3403 // Description of the about: flag for experimental location.reload() to trigger | 3403 // Description of the about: flag for experimental location.reload() to trigger |
| 3404 // a hard-reload. | 3404 // a hard-reload. |
| 3405 extern const char kLocationHardReloadDescription[]; | 3405 extern const char kLocationHardReloadDescription[]; |
| 3406 | 3406 |
| 3407 // Name and description for the capture-thumbnail-on-load-finished flag. | 3407 // Name and description for the capture-thumbnail-on-load-finished flag. |
| 3408 extern const char kCaptureThumbnailOnLoadFinishedName[]; | 3408 extern const char kCaptureThumbnailOnLoadFinishedName[]; |
| 3409 extern const char kCaptureThumbnailOnLoadFinishedDescription[]; | 3409 extern const char kCaptureThumbnailOnLoadFinishedDescription[]; |
| 3410 | 3410 |
| 3411 // Name and description for the flag to use the local NTP if Google is the |
| 3412 // default search engine. |
| 3413 extern const char kUseGoogleLocalNtpName[]; |
| 3414 extern const char kUseGoogleLocalNtpDescription[]; |
| 3415 |
| 3416 // Name and description for the flag to show a OneGoogleBar on the local NTP. |
| 3417 extern const char kOneGoogleBarOnLocalNtpName[]; |
| 3418 extern const char kOneGoogleBarOnLocalNtpDescription[]; |
| 3419 |
| 3411 } // namespace flag_descriptions | 3420 } // namespace flag_descriptions |
| 3412 | 3421 |
| 3413 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3422 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |