| 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 3404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3415 extern const char kCaptureThumbnailOnLoadFinishedDescription[]; | 3415 extern const char kCaptureThumbnailOnLoadFinishedDescription[]; |
| 3416 | 3416 |
| 3417 #if defined(OS_WIN) | 3417 #if defined(OS_WIN) |
| 3418 | 3418 |
| 3419 // Name and description of the flag that enables D3D v-sync. | 3419 // Name and description of the flag that enables D3D v-sync. |
| 3420 extern const char kEnableD3DVsync[]; | 3420 extern const char kEnableD3DVsync[]; |
| 3421 extern const char kEnableD3DVsyncDescription[]; | 3421 extern const char kEnableD3DVsyncDescription[]; |
| 3422 | 3422 |
| 3423 #endif // defined(OS_WIN) | 3423 #endif // defined(OS_WIN) |
| 3424 | 3424 |
| 3425 #if !defined(OS_ANDROID) && !defined(OS_IOS) |
| 3426 |
| 3427 // Name and description for the flag to use the local NTP if Google is the |
| 3428 // default search engine. |
| 3429 extern const char kUseGoogleLocalNtpName[]; |
| 3430 extern const char kUseGoogleLocalNtpDescription[]; |
| 3431 |
| 3432 // Name and description for the flag to show a OneGoogleBar on the local NTP. |
| 3433 extern const char kOneGoogleBarOnLocalNtpName[]; |
| 3434 extern const char kOneGoogleBarOnLocalNtpDescription[]; |
| 3435 |
| 3436 #endif |
| 3437 |
| 3425 } // namespace flag_descriptions | 3438 } // namespace flag_descriptions |
| 3426 | 3439 |
| 3427 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3440 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |