| 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 1370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1381 // Desktop -------------------------------------------------------------------- | 1381 // Desktop -------------------------------------------------------------------- |
| 1382 | 1382 |
| 1383 #if !defined(OS_ANDROID) && !defined(OS_IOS) | 1383 #if !defined(OS_ANDROID) && !defined(OS_IOS) |
| 1384 | 1384 |
| 1385 extern const char kEnableNewAppMenuIconName[]; | 1385 extern const char kEnableNewAppMenuIconName[]; |
| 1386 extern const char kEnableNewAppMenuIconDescription[]; | 1386 extern const char kEnableNewAppMenuIconDescription[]; |
| 1387 | 1387 |
| 1388 extern const char kOmniboxEntitySuggestionsName[]; | 1388 extern const char kOmniboxEntitySuggestionsName[]; |
| 1389 extern const char kOmniboxEntitySuggestionsDescription[]; | 1389 extern const char kOmniboxEntitySuggestionsDescription[]; |
| 1390 | 1390 |
| 1391 extern const char kOmniboxTailSuggestionsName[]; |
| 1392 extern const char kOmniboxTailSuggestionsDescription[]; |
| 1393 |
| 1391 extern const char kOneGoogleBarOnLocalNtpName[]; | 1394 extern const char kOneGoogleBarOnLocalNtpName[]; |
| 1392 extern const char kOneGoogleBarOnLocalNtpDescription[]; | 1395 extern const char kOneGoogleBarOnLocalNtpDescription[]; |
| 1393 | 1396 |
| 1394 extern const char kPauseBackgroundTabsName[]; | 1397 extern const char kPauseBackgroundTabsName[]; |
| 1395 extern const char kPauseBackgroundTabsDescription[]; | 1398 extern const char kPauseBackgroundTabsDescription[]; |
| 1396 | 1399 |
| 1397 extern const char kUseGoogleLocalNtpName[]; | 1400 extern const char kUseGoogleLocalNtpName[]; |
| 1398 extern const char kUseGoogleLocalNtpDescription[]; | 1401 extern const char kUseGoogleLocalNtpDescription[]; |
| 1399 | 1402 |
| 1400 #endif | 1403 #endif |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1495 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1498 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 1496 | 1499 |
| 1497 // ============================================================================ | 1500 // ============================================================================ |
| 1498 // Don't just add flags to the end, put them in the right section in | 1501 // Don't just add flags to the end, put them in the right section in |
| 1499 // alphabetical order. See top instructions for more. | 1502 // alphabetical order. See top instructions for more. |
| 1500 // ============================================================================ | 1503 // ============================================================================ |
| 1501 | 1504 |
| 1502 } // namespace flag_descriptions | 1505 } // namespace flag_descriptions |
| 1503 | 1506 |
| 1504 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1507 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |