| OLD | NEW |
| 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 #include "chrome/browser/flag_descriptions.h" | 5 #include "chrome/browser/flag_descriptions.h" |
| 6 | 6 |
| 7 namespace flag_descriptions { | 7 namespace flag_descriptions { |
| 8 | 8 |
| 9 // Material Design version of chrome://bookmarks | 9 // Material Design version of chrome://bookmarks |
| 10 | 10 |
| (...skipping 1558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1569 #if defined(OS_WIN) | 1569 #if defined(OS_WIN) |
| 1570 | 1570 |
| 1571 const char kEnableAppcontainerName[] = "Enable AppContainer Lockdown."; | 1571 const char kEnableAppcontainerName[] = "Enable AppContainer Lockdown."; |
| 1572 | 1572 |
| 1573 const char kEnableAppcontainerDescription[] = | 1573 const char kEnableAppcontainerDescription[] = |
| 1574 "Enables the use of an AppContainer on sandboxed processes to improve " | 1574 "Enables the use of an AppContainer on sandboxed processes to improve " |
| 1575 "security."; | 1575 "security."; |
| 1576 | 1576 |
| 1577 #endif // defined(OS_WIN) | 1577 #endif // defined(OS_WIN) |
| 1578 | 1578 |
| 1579 #if defined(TOOLKIT_VIEWS) || (defined(OS_MACOSX) && !defined(OS_IOS)) |
| 1580 |
| 1581 const char kShowCertLinkOnPageInfoName[] = "Show certificate link"; |
| 1582 |
| 1583 const char kShowCertLinkOnPageInfoDescription[] = |
| 1584 "Add a link from the Page Info bubble to the certificate viewer for HTTPS " |
| 1585 "sites."; |
| 1586 |
| 1587 #endif // defined(TOOLKIT_VIEWS) || (defined(OS_MACOSX) && !defined(OS_IOS)) |
| 1588 |
| 1579 #if defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1589 #if defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 1580 | 1590 |
| 1581 const char kAutofillCreditCardUploadName[] = | 1591 const char kAutofillCreditCardUploadName[] = |
| 1582 "Enable offering upload of Autofilled credit cards"; | 1592 "Enable offering upload of Autofilled credit cards"; |
| 1583 | 1593 |
| 1584 const char kAutofillCreditCardUploadDescription[] = | 1594 const char kAutofillCreditCardUploadDescription[] = |
| 1585 "Enables a new option to upload credit cards to Google Payments for " | 1595 "Enables a new option to upload credit cards to Google Payments for " |
| 1586 "sync to all Chrome devices."; | 1596 "sync to all Chrome devices."; |
| 1587 | 1597 |
| 1588 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1598 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| (...skipping 1447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3036 | 3046 |
| 3037 const char kOmniboxDisplayTitleForCurrentUrlName[] = | 3047 const char kOmniboxDisplayTitleForCurrentUrlName[] = |
| 3038 "Include title for the current URL in the omnibox"; | 3048 "Include title for the current URL in the omnibox"; |
| 3039 | 3049 |
| 3040 const char kOmniboxDisplayTitleForCurrentUrlDescription[] = | 3050 const char kOmniboxDisplayTitleForCurrentUrlDescription[] = |
| 3041 "In the event that the omnibox provides suggestions on-focus, the URL of " | 3051 "In the event that the omnibox provides suggestions on-focus, the URL of " |
| 3042 "the current page is provided as the first suggestion without a title. " | 3052 "the current page is provided as the first suggestion without a title. " |
| 3043 "Enabling this flag causes the title to be displayed."; | 3053 "Enabling this flag causes the title to be displayed."; |
| 3044 | 3054 |
| 3045 } // namespace flag_descriptions | 3055 } // namespace flag_descriptions |
| OLD | NEW |