| 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. |
| 11 | 11 |
| 12 namespace flag_descriptions { | 12 namespace flag_descriptions { |
| 13 | 13 |
| 14 const char kBrowserTaskScheduler[] = "Task Scheduler"; | 14 const char kBrowserTaskScheduler[] = "Task Scheduler"; |
| 15 | 15 |
| 16 const char kBrowserTaskSchedulerDescription[] = | 16 const char kBrowserTaskSchedulerDescription[] = |
| 17 "Enables redirection of some task posting APIs to the task scheduler."; | 17 "Enables redirection of some task posting APIs to the task scheduler."; |
| 18 | 18 |
| 19 const char kContextualSearch[] = "Contextual Search"; | 19 const char kContextualSearch[] = "Contextual Search"; |
| 20 | 20 |
| 21 const char kContextualSearchDescription[] = | 21 const char kContextualSearchDescription[] = |
| 22 "Whether or not Contextual Search is enabled."; | 22 "Whether or not Contextual Search is enabled."; |
| 23 | 23 |
| 24 const char kPhysicalWeb[] = "Physical Web"; | 24 const char kPhysicalWeb[] = "Physical Web"; |
| 25 | 25 |
| 26 const char kPhysicalWebDescription[] = | 26 const char kPhysicalWebDescription[] = |
| 27 "When enabled, the omnibox will include suggestions for web pages " | 27 "When enabled, the omnibox will include suggestions for web pages " |
| 28 "broadcast by devices near you."; | 28 "broadcast by devices near you."; |
| 29 | 29 |
| 30 const char kMarkHttpAsName[] = "Mark non-secure origins as non-secure"; |
| 31 |
| 32 const char kMarkHttpAsDescription[] = "Change the UI treatment for HTTP pages"; |
| 33 const char kMarkHttpAsDangerous[] = "Always mark HTTP as actively dangerous"; |
| 34 const char kMarkHttpAsNonSecureAfterEditing[] = |
| 35 "Warn on HTTP after editing forms"; |
| 36 const char kMarkHttpAsNonSecureWhileIncognito[] = |
| 37 "Warn on HTTP while in Incognito mode"; |
| 38 const char kMarkHttpAsNonSecureWhileIncognitoOrEditing[] = |
| 39 "Warn on HTTP while in Incognito mode or after editing forms"; |
| 40 |
| 30 } // namespace flag_descriptions | 41 } // namespace flag_descriptions |
| OLD | NEW |