| 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 #ifndef IOS_CHROME_BROWSER_IOS_CHROME_FLAG_DESCRIPTIONS_H_ | 5 #ifndef IOS_CHROME_BROWSER_IOS_CHROME_FLAG_DESCRIPTIONS_H_ |
| 6 #define IOS_CHROME_BROWSER_IOS_CHROME_FLAG_DESCRIPTIONS_H_ | 6 #define IOS_CHROME_BROWSER_IOS_CHROME_FLAG_DESCRIPTIONS_H_ |
| 7 | 7 |
| 8 namespace flag_descriptions { | 8 namespace flag_descriptions { |
| 9 | 9 |
| 10 // Title for the flag to control redirection to the task scheduler. | 10 // Title for the flag to control redirection to the task scheduler. |
| 11 extern const char kBrowserTaskScheduler[]; | 11 extern const char kBrowserTaskScheduler[]; |
| 12 | 12 |
| 13 // Description of about:flag option to control redirection to the task | 13 // Description of about:flag option to control redirection to the task |
| 14 // scheduler. | 14 // scheduler. |
| 15 extern const char kBrowserTaskSchedulerDescription[]; | 15 extern const char kBrowserTaskSchedulerDescription[]; |
| 16 | 16 |
| 17 // Title for the flag to enable Contextual Search. | 17 // Title for the flag to enable Contextual Search. |
| 18 extern const char kContextualSearch[]; | 18 extern const char kContextualSearch[]; |
| 19 | 19 |
| 20 // Description for the flag to enable Contextual Search. | 20 // Description for the flag to enable Contextual Search. |
| 21 extern const char kContextualSearchDescription[]; | 21 extern const char kContextualSearchDescription[]; |
| 22 | 22 |
| 23 // Title, description, and options for the MarkHttpAs setting that controls |
| 24 // display of omnibox warnings about non-secure pages. |
| 25 extern const char kMarkHttpAsName[]; |
| 26 extern const char kMarkHttpAsDescription[]; |
| 27 extern const char kMarkHttpAsDangerous[]; |
| 28 extern const char kMarkHttpAsNonSecureAfterEditing[]; |
| 29 extern const char kMarkHttpAsNonSecureWhileIncognito[]; |
| 30 extern const char kMarkHttpAsNonSecureWhileIncognitoOrEditing[]; |
| 31 |
| 23 // Title for the flag to enable Physical Web in the omnibox. | 32 // Title for the flag to enable Physical Web in the omnibox. |
| 24 extern const char kPhysicalWeb[]; | 33 extern const char kPhysicalWeb[]; |
| 25 | 34 |
| 26 // Description for the flag to enable Physical Web in the omnibox. | 35 // Description for the flag to enable Physical Web in the omnibox. |
| 27 extern const char kPhysicalWebDescription[]; | 36 extern const char kPhysicalWebDescription[]; |
| 28 | 37 |
| 29 } // namespace flag_descriptions | 38 } // namespace flag_descriptions |
| 30 | 39 |
| 31 #endif // IOS_CHROME_BROWSER_IOS_CHROME_FLAG_DESCRIPTIONS_H_ | 40 #endif // IOS_CHROME_BROWSER_IOS_CHROME_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |