Chromium Code Reviews| Index: components/contextual_suggestions/features.h |
| diff --git a/components/contextual_suggestions/features.h b/components/contextual_suggestions/features.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..7c9bf4b0c61da7616a5a39092822f79dc25fbe6b |
| --- /dev/null |
| +++ b/components/contextual_suggestions/features.h |
| @@ -0,0 +1,19 @@ |
| +// 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 COMPONENTS_CONTEXTUAL_SUGGESTIONS_FEATURES_H_ |
| +#define COMPONENTS_CONTEXTUAL_SUGGESTIONS_FEATURES_H_ |
| + |
| +#include "base/feature_list.h" |
| + |
| +namespace contextual_suggestions { |
| + |
|
Marc Treib
2017/07/06 16:02:46
optional: Many places use a sub-namespace "feature
gcomanici
2017/07/06 16:54:17
Done.
|
| +// Feature used for using an experimental zero suggest suggestions service |
| +// for omnibox. This feature redirects requests to a service maintained by |
| +// the Chrome team. |
| +extern const base::Feature kZeroSuggestRedirectToChrome; |
| + |
| +} // namespace contextual_suggestions |
| + |
| +#endif // COMPONENTS_CONTEXTUAL_SUGGESTIONS_FEATURES_H_ |