Chromium Code Reviews| Index: ios/chrome/browser/ios_chrome_flag_descriptions.h |
| diff --git a/ios/chrome/browser/ios_chrome_flag_descriptions.h b/ios/chrome/browser/ios_chrome_flag_descriptions.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..00beb4e31dd71d66972223b7cd66682fb178ca2d |
| --- /dev/null |
| +++ b/ios/chrome/browser/ios_chrome_flag_descriptions.h |
| @@ -0,0 +1,31 @@ |
| +// Copyright 2017 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef IOS_CHROME_BROWSER_IOS_CHROME_FLAG_DESCRIPTIONS_H_ |
| +#define IOS_CHROME_BROWSER_IOS_CHROME_FLAG_DESCRIPTIONS_H_ |
| + |
| +namespace flag_descriptions { |
| + |
| +// Description of about:flag option to control redirection to the task |
| +// scheduler. |
| +extern const char kBrowserTaskSchedulerDescription[]; |
| + |
| +// Name of about:flag option to control redirection to the task scheduler. |
|
sdefresne
2017/03/28 09:42:28
nit, may be done in a followup: for consistency wi
vabr (Chromium)
2017/03/28 10:10:31
Done.
sdefresne
2017/03/28 11:46:24
Ooops sorry, I forgot "[]" which broke the build :
|
| +extern const char kBrowserTaskSchedulerName[]; |
| + |
| +// Title for the flag to enable Contextual Search. |
| +extern const char kContextualSearch[]; |
| + |
| +// Description for the flag to enable Contextual Search. |
| +extern const char kContextualSearchDescription[]; |
| + |
| +// Title for the flag to enable Physical Web in the omnibox. |
| +extern const char kPhysicalWeb[]; |
| + |
| +// Description for the flag to enable Physical Web in the omnibox. |
| +extern const char kPhysicalWebDescription[]; |
| + |
| +} // namespace flag_descriptions |
| + |
| +#endif // IOS_CHROME_BROWSER_IOS_CHROME_FLAG_DESCRIPTIONS_H_ |