Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(213)

Side by Side Diff: chrome/browser/flag_descriptions.h

Issue 2852043002: Add a flag to enable Translate Compact Infobar on Android. (Closed)
Patch Set: fix LoginCustomFlags Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698