Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 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 #include "chrome/browser/ntp_snippets/ntp_snippets_features.h" | |
| 6 | |
| 7 const base::Feature kContentSuggestionsNotificationsFeature = { | |
| 8 "ContentSuggestionsNotifications", base::FEATURE_DISABLED_BY_DEFAULT}; | |
|
fhorschig
2017/01/05 13:24:35
Wouldn't it make sense to put that into the ntp_sn
sfiera
2017/01/05 13:35:01
We don't seem to use that namespace in chrome/brow
Bernhard Bauer
2017/01/05 13:40:58
The rough (i.e. not always followed) rule of thumb
| |
| 9 | |
| 10 const char kContentSuggestionsNotificationsAlwaysNotifyParam[] = | |
| 11 "always_notify"; | |
| OLD | NEW |