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

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

Issue 2889823002: [omnibox] Added 'OmniboxTailSuggestions' flag (Closed)
Patch Set: Added histogram enumeration 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 1367 matching lines...) Expand 10 before | Expand all | Expand 10 after
1378 // Desktop -------------------------------------------------------------------- 1378 // Desktop --------------------------------------------------------------------
1379 1379
1380 #if !defined(OS_ANDROID) && !defined(OS_IOS) 1380 #if !defined(OS_ANDROID) && !defined(OS_IOS)
1381 1381
1382 extern const char kEnableNewAppMenuIconName[]; 1382 extern const char kEnableNewAppMenuIconName[];
1383 extern const char kEnableNewAppMenuIconDescription[]; 1383 extern const char kEnableNewAppMenuIconDescription[];
1384 1384
1385 extern const char kOmniboxEntitySuggestionsName[]; 1385 extern const char kOmniboxEntitySuggestionsName[];
1386 extern const char kOmniboxEntitySuggestionsDescription[]; 1386 extern const char kOmniboxEntitySuggestionsDescription[];
1387 1387
1388 extern const char kOmniboxTailSuggestionsName[];
Mark P 2017/05/31 23:17:13 Uh, how does this compile? This is only defined f
Kevin Bailey 2017/06/01 14:32:42 I believe IOS is not a subset of MACOS. I had assu
1389 extern const char kOmniboxTailSuggestionsDescription[];
1390
1388 extern const char kOneGoogleBarOnLocalNtpName[]; 1391 extern const char kOneGoogleBarOnLocalNtpName[];
1389 extern const char kOneGoogleBarOnLocalNtpDescription[]; 1392 extern const char kOneGoogleBarOnLocalNtpDescription[];
1390 1393
1391 extern const char kPauseBackgroundTabsName[]; 1394 extern const char kPauseBackgroundTabsName[];
1392 extern const char kPauseBackgroundTabsDescription[]; 1395 extern const char kPauseBackgroundTabsDescription[];
1393 1396
1394 extern const char kUseGoogleLocalNtpName[]; 1397 extern const char kUseGoogleLocalNtpName[];
1395 extern const char kUseGoogleLocalNtpDescription[]; 1398 extern const char kUseGoogleLocalNtpDescription[];
1396 1399
1397 #endif 1400 #endif
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
1492 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) 1495 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID)
1493 1496
1494 // ============================================================================ 1497 // ============================================================================
1495 // Don't just add flags to the end, put them in the right section in 1498 // Don't just add flags to the end, put them in the right section in
1496 // alphabetical order. See top instructions for more. 1499 // alphabetical order. See top instructions for more.
1497 // ============================================================================ 1500 // ============================================================================
1498 1501
1499 } // namespace flag_descriptions 1502 } // namespace flag_descriptions
1500 1503
1501 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 1504 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698