OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef IOS_CHROME_BROWSER_IOS_CHROME_FLAGS_DESCRIPTIONS_H_ |
| 6 #define IOS_CHROME_BROWSER_IOS_CHROME_FLAGS_DESCRIPTIONS_H_ |
| 7 |
| 8 #include "build/build_config.h" |
| 9 #include "build/buildflag.h" |
| 10 |
| 11 namespace flags_descriptions { |
| 12 |
| 13 // Description of about:flag option to control redirection to the task |
| 14 // scheduler. |
| 15 extern const char kBrowserTaskSchedulerDescription[]; |
| 16 |
| 17 // Name of about:flag option to control redirection to the task scheduler. |
| 18 extern const char kBrowserTaskSchedulerName[]; |
| 19 |
| 20 // Title for the flag to enable Contextual Search. |
| 21 extern const char kContextualSearch[]; |
| 22 |
| 23 // Description for the flag to enable Contextual Search. |
| 24 extern const char kContextualSearchDescription[]; |
| 25 |
| 26 // Title for the flag to enable Physical Web in the omnibox. |
| 27 extern const char kPhysicalWeb[]; |
| 28 |
| 29 // Description for the flag to enable Physical Web in the omnibox. |
| 30 extern const char kPhysicalWebDescription[]; |
| 31 |
| 32 } // namespace flags_descriptions |
| 33 |
| 34 #endif // IOS_CHROME_BROWSER_IOS_CHROME_FLAGS_DESCRIPTIONS_H_ |
OLD | NEW |