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 #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 1483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1494 #if defined(OS_MACOSX) | 1494 #if defined(OS_MACOSX) |
| 1495 | 1495 |
| 1496 // Name of the flag to enable the new Translate UX. | 1496 // Name of the flag to enable the new Translate UX. |
| 1497 extern const char kTranslateNewUxName[]; | 1497 extern const char kTranslateNewUxName[]; |
| 1498 | 1498 |
| 1499 // Description for the flag to enable the new Translate UX. | 1499 // Description for the flag to enable the new Translate UX. |
| 1500 extern const char kTranslateNewUxDescription[]; | 1500 extern const char kTranslateNewUxDescription[]; |
| 1501 | 1501 |
| 1502 #endif // defined(OS_MACOSX) | 1502 #endif // defined(OS_MACOSX) |
| 1503 | 1503 |
| 1504 #if defined(OS_ANDROID) | |
| 1505 | |
| 1506 // Name of the flag for the translate compact infobar. | |
| 1507 extern const char kTranslateCompactUIName[]; | |
| 1508 | |
| 1509 // Description of the flag for translate compact infobar. | |
| 1510 extern const char kTranslateCompactUIDescription[]; | |
| 1511 | |
|
gone
2017/05/04 01:37:07
combine with the block in 1484?
| |
| 1512 #endif // defined(OS_ANDROID) | |
| 1513 | |
| 1504 // Name of the flag to enable the Translate 2016Q2 UI. | 1514 // Name of the flag to enable the Translate 2016Q2 UI. |
| 1505 extern const char kTranslate2016q2UiName[]; | 1515 extern const char kTranslate2016q2UiName[]; |
| 1506 | 1516 |
| 1507 // Description for the flag to enable the Translate 2016Q2 UI. | 1517 // Description for the flag to enable the Translate 2016Q2 UI. |
| 1508 extern const char kTranslate2016q2UiDescription[]; | 1518 extern const char kTranslate2016q2UiDescription[]; |
| 1509 | 1519 |
| 1510 // Name of the flag to enable the Translate Language by ULP. | 1520 // Name of the flag to enable the Translate Language by ULP. |
| 1511 extern const char kTranslateLanguageByUlpName[]; | 1521 extern const char kTranslateLanguageByUlpName[]; |
| 1512 | 1522 |
| 1513 // Description for the flag to enable the Translate Language by ULP. | 1523 // Description for the flag to enable the Translate Language by ULP. |
| (...skipping 1805 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 3319 // current URL. | 3329 // current URL. |
| 3320 extern const char kOmniboxDisplayTitleForCurrentUrlName[]; | 3330 extern const char kOmniboxDisplayTitleForCurrentUrlName[]; |
| 3321 | 3331 |
| 3322 // Description of the about: flag for displaying the title of the omnibox match | 3332 // Description of the about: flag for displaying the title of the omnibox match |
| 3323 // for current URL. | 3333 // for current URL. |
| 3324 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[]; | 3334 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[]; |
| 3325 | 3335 |
| 3326 } // namespace flag_descriptions | 3336 } // namespace flag_descriptions |
| 3327 | 3337 |
| 3328 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3338 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |