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

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

Issue 2944973002: Remove IS_IOS checks in chrome/ (Closed)
Patch Set: 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 1379 matching lines...) Expand 10 before | Expand all | Expand 10 after
1390 extern const char kVoiceInputName[]; 1390 extern const char kVoiceInputName[];
1391 extern const char kVoiceInputDescription[]; 1391 extern const char kVoiceInputDescription[];
1392 1392
1393 extern const char kWakeOnPacketsName[]; 1393 extern const char kWakeOnPacketsName[];
1394 extern const char kWakeOnPacketsDescription[]; 1394 extern const char kWakeOnPacketsDescription[];
1395 1395
1396 #endif // #if defined(OS_CHROMEOS) 1396 #endif // #if defined(OS_CHROMEOS)
1397 1397
1398 // Desktop -------------------------------------------------------------------- 1398 // Desktop --------------------------------------------------------------------
1399 1399
1400 #if !defined(OS_ANDROID) && !defined(OS_IOS) 1400 #if !defined(OS_ANDROID)
1401 1401
1402 extern const char kEnableNewAppMenuIconName[]; 1402 extern const char kEnableNewAppMenuIconName[];
1403 extern const char kEnableNewAppMenuIconDescription[]; 1403 extern const char kEnableNewAppMenuIconDescription[];
1404 1404
1405 extern const char kOmniboxEntitySuggestionsName[]; 1405 extern const char kOmniboxEntitySuggestionsName[];
1406 extern const char kOmniboxEntitySuggestionsDescription[]; 1406 extern const char kOmniboxEntitySuggestionsDescription[];
1407 1407
1408 extern const char kOmniboxTailSuggestionsName[]; 1408 extern const char kOmniboxTailSuggestionsName[];
1409 extern const char kOmniboxTailSuggestionsDescription[]; 1409 extern const char kOmniboxTailSuggestionsDescription[];
1410 1410
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
1500 extern const char kUiShowCompositedLayerBordersRenderPass[]; 1500 extern const char kUiShowCompositedLayerBordersRenderPass[];
1501 extern const char kUiShowCompositedLayerBordersSurface[]; 1501 extern const char kUiShowCompositedLayerBordersSurface[];
1502 extern const char kUiShowCompositedLayerBordersLayer[]; 1502 extern const char kUiShowCompositedLayerBordersLayer[];
1503 extern const char kUiShowCompositedLayerBordersAll[]; 1503 extern const char kUiShowCompositedLayerBordersAll[];
1504 1504
1505 extern const char kUiSlowAnimationsName[]; 1505 extern const char kUiSlowAnimationsName[];
1506 extern const char kUiSlowAnimationsDescription[]; 1506 extern const char kUiSlowAnimationsDescription[];
1507 1507
1508 #endif // defined(USE_ASH) 1508 #endif // defined(USE_ASH)
1509 1509
1510 #if defined(TOOLKIT_VIEWS) || (defined(OS_MACOSX) && !defined(OS_IOS)) 1510 #if defined(TOOLKIT_VIEWS) || defined(OS_MACOSX)
1511 1511
1512 extern const char kShowCertLinkOnPageInfoName[]; 1512 extern const char kShowCertLinkOnPageInfoName[];
1513 extern const char kShowCertLinkOnPageInfoDescription[]; 1513 extern const char kShowCertLinkOnPageInfoDescription[];
1514 1514
1515 #endif // defined(TOOLKIT_VIEWS) || (defined(OS_MACOSX) && !defined(OS_IOS)) 1515 #endif // defined(TOOLKIT_VIEWS) || defined(OS_MACOSX)
1516 1516
1517 #if defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) 1517 #if defined(TOOLKIT_VIEWS) || defined(OS_ANDROID)
1518 1518
1519 extern const char kAutofillCreditCardUploadName[]; 1519 extern const char kAutofillCreditCardUploadName[];
1520 extern const char kAutofillCreditCardUploadDescription[]; 1520 extern const char kAutofillCreditCardUploadDescription[];
1521 1521
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
« no previous file with comments | « chrome/browser/favicon/content_favicon_driver_browsertest.cc ('k') | chrome/browser/flag_descriptions.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698