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

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

Issue 2903293002: [Android] Omnibox Placeholder Experiment (Closed)
Patch Set: fix some naming issues Created 3 years, 6 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 473 matching lines...) Expand 10 before | Expand all | Expand 10 after
484 484
485 extern const char kOfflineAutoReloadVisibleOnlyName[]; 485 extern const char kOfflineAutoReloadVisibleOnlyName[];
486 extern const char kOfflineAutoReloadVisibleOnlyDescription[]; 486 extern const char kOfflineAutoReloadVisibleOnlyDescription[];
487 487
488 extern const char kOffMainThreadFetchName[]; 488 extern const char kOffMainThreadFetchName[];
489 extern const char kOffMainThreadFetchDescription[]; 489 extern const char kOffMainThreadFetchDescription[];
490 490
491 extern const char kOmniboxDisplayTitleForCurrentUrlName[]; 491 extern const char kOmniboxDisplayTitleForCurrentUrlName[];
492 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[]; 492 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[];
493 493
494 extern const char kOmniboxPlaceholderExperimentName[];
495 extern const char kOmniboxPlaceholderExperimentDescription[];
496 extern const char kOmniboxPlaceholderExperimentSearchOrTypeUrl[];
497 extern const char kOmniboxPlaceholderExperimentSearchOrTypeWebsiteName[];
498 extern const char kOmniboxPlaceholderExperimentSearchTheWeb[];
499 extern const char kOmniboxPlaceholderExperimentEnterASearchOrWebsite[];
500 extern const char kOmniboxPlaceholderExperimentSearchNews[];
501 extern const char kOmniboxPlaceholderExperimentSearchRecipes[];
502 extern const char kOmniboxPlaceholderExperimentSearchWeather[];
503 extern const char kOmniboxPlaceholderExperimentBlank[];
504
494 extern const char kOmniboxUIMaxAutocompleteMatchesName[]; 505 extern const char kOmniboxUIMaxAutocompleteMatchesName[];
495 extern const char kOmniboxUIMaxAutocompleteMatchesDescription[]; 506 extern const char kOmniboxUIMaxAutocompleteMatchesDescription[];
496 507
497 extern const char kOmniboxUIVerticalMarginName[]; 508 extern const char kOmniboxUIVerticalMarginName[];
498 extern const char kOmniboxUIVerticalMarginDescription[]; 509 extern const char kOmniboxUIVerticalMarginDescription[];
499 510
500 extern const char kOriginTrialsName[]; 511 extern const char kOriginTrialsName[];
501 extern const char kOriginTrialsDescription[]; 512 extern const char kOriginTrialsDescription[];
502 513
503 extern const char kOverlayScrollbarsName[]; 514 extern const char kOverlayScrollbarsName[];
(...skipping 978 matching lines...) Expand 10 before | Expand all | Expand 10 after
1482 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) 1493 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID)
1483 1494
1484 // ============================================================================ 1495 // ============================================================================
1485 // Don't just add flags to the end, put them in the right section in 1496 // Don't just add flags to the end, put them in the right section in
1486 // alphabetical order. See top instructions for more. 1497 // alphabetical order. See top instructions for more.
1487 // ============================================================================ 1498 // ============================================================================
1488 1499
1489 } // namespace flag_descriptions 1500 } // namespace flag_descriptions
1490 1501
1491 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 1502 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698