| 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 "ios/chrome/browser/ios_chrome_flag_descriptions.h" | 5 #include "ios/chrome/browser/ios_chrome_flag_descriptions.h" |
| 6 | 6 |
| 7 // This file declares strings used in chrome://flags. These messages are not | 7 // This file declares strings used in chrome://flags. These messages are not |
| 8 // translated, because instead of end-users they target Chromium developers and | 8 // translated, because instead of end-users they target Chromium developers and |
| 9 // testers. See https://crbug.com/587272 and https://crbug.com/703134 for more | 9 // testers. See https://crbug.com/587272 and https://crbug.com/703134 for more |
| 10 // details. | 10 // details. |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 | 31 |
| 32 const char kMarkHttpAsDescription[] = "Change the UI treatment for HTTP pages"; | 32 const char kMarkHttpAsDescription[] = "Change the UI treatment for HTTP pages"; |
| 33 const char kMarkHttpAsDangerous[] = "Always mark HTTP as actively dangerous"; | 33 const char kMarkHttpAsDangerous[] = "Always mark HTTP as actively dangerous"; |
| 34 const char kMarkHttpAsNonSecureAfterEditing[] = | 34 const char kMarkHttpAsNonSecureAfterEditing[] = |
| 35 "Warn on HTTP after editing forms"; | 35 "Warn on HTTP after editing forms"; |
| 36 const char kMarkHttpAsNonSecureWhileIncognito[] = | 36 const char kMarkHttpAsNonSecureWhileIncognito[] = |
| 37 "Warn on HTTP while in Incognito mode"; | 37 "Warn on HTTP while in Incognito mode"; |
| 38 const char kMarkHttpAsNonSecureWhileIncognitoOrEditing[] = | 38 const char kMarkHttpAsNonSecureWhileIncognitoOrEditing[] = |
| 39 "Warn on HTTP while in Incognito mode or after editing forms"; | 39 "Warn on HTTP while in Incognito mode or after editing forms"; |
| 40 | 40 |
| 41 const char kWebPaymentsName[] = "Web Payments"; |
| 42 |
| 43 const char kWebPaymentsDescription[] = |
| 44 "Enable Payment Request API integration, a JavaScript API for merchants."; |
| 45 |
| 41 } // namespace flag_descriptions | 46 } // namespace flag_descriptions |
| OLD | NEW |