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

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

Issue 2961393002: Omnibox UI Experiments: Hook up elide-after-host feature flag. (Closed)
Patch Set: fix Created 3 years, 5 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 480 matching lines...) Expand 10 before | Expand all | Expand 10 after
491 491
492 extern const char kOfflineAutoReloadVisibleOnlyName[]; 492 extern const char kOfflineAutoReloadVisibleOnlyName[];
493 extern const char kOfflineAutoReloadVisibleOnlyDescription[]; 493 extern const char kOfflineAutoReloadVisibleOnlyDescription[];
494 494
495 extern const char kOffMainThreadFetchName[]; 495 extern const char kOffMainThreadFetchName[];
496 extern const char kOffMainThreadFetchDescription[]; 496 extern const char kOffMainThreadFetchDescription[];
497 497
498 extern const char kOmniboxDisplayTitleForCurrentUrlName[]; 498 extern const char kOmniboxDisplayTitleForCurrentUrlName[];
499 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[]; 499 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[];
500 500
501 extern const char kOmniboxUIHideSuggestionUrlPathName[]; 501 extern const char kOmniboxUIElideSuggestionUrlAfterHostName[];
502 extern const char kOmniboxUIHideSuggestionUrlPathDescription[]; 502 extern const char kOmniboxUIElideSuggestionUrlAfterHostDescription[];
503 503
504 extern const char kOmniboxUIHideSuggestionUrlSchemeName[]; 504 extern const char kOmniboxUIHideSuggestionUrlSchemeName[];
505 extern const char kOmniboxUIHideSuggestionUrlSchemeDescription[]; 505 extern const char kOmniboxUIHideSuggestionUrlSchemeDescription[];
506 506
507 extern const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsName[]; 507 extern const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsName[];
508 extern const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsDescription[]; 508 extern const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsDescription[];
509 509
510 extern const char kOmniboxUIMaxAutocompleteMatchesName[]; 510 extern const char kOmniboxUIMaxAutocompleteMatchesName[];
511 extern const char kOmniboxUIMaxAutocompleteMatchesDescription[]; 511 extern const char kOmniboxUIMaxAutocompleteMatchesDescription[];
512 512
(...skipping 1009 matching lines...) Expand 10 before | Expand all | Expand 10 after
1522 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) 1522 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID)
1523 1523
1524 // ============================================================================ 1524 // ============================================================================
1525 // Don't just add flags to the end, put them in the right section in 1525 // Don't just add flags to the end, put them in the right section in
1526 // alphabetical order. See top instructions for more. 1526 // alphabetical order. See top instructions for more.
1527 // ============================================================================ 1527 // ============================================================================
1528 1528
1529 } // namespace flag_descriptions 1529 } // namespace flag_descriptions
1530 1530
1531 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 1531 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698