| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #include "components/content_settings/core/browser/website_settings_registry.h" | 5 #include "components/content_settings/core/browser/website_settings_registry.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/memory/ptr_util.h" | 10 #include "base/memory/ptr_util.h" |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 Register(CONTENT_SETTINGS_TYPE_SITE_ENGAGEMENT, "site-engagement", nullptr, | 132 Register(CONTENT_SETTINGS_TYPE_SITE_ENGAGEMENT, "site-engagement", nullptr, |
| 133 WebsiteSettingsInfo::UNSYNCABLE, WebsiteSettingsInfo::LOSSY, | 133 WebsiteSettingsInfo::UNSYNCABLE, WebsiteSettingsInfo::LOSSY, |
| 134 WebsiteSettingsInfo::REQUESTING_ORIGIN_ONLY_SCOPE, | 134 WebsiteSettingsInfo::REQUESTING_ORIGIN_ONLY_SCOPE, |
| 135 DESKTOP | PLATFORM_ANDROID, | 135 DESKTOP | PLATFORM_ANDROID, |
| 136 WebsiteSettingsInfo::INHERIT_IN_INCOGNITO); | 136 WebsiteSettingsInfo::INHERIT_IN_INCOGNITO); |
| 137 Register(CONTENT_SETTINGS_TYPE_USB_CHOOSER_DATA, "usb-chooser-data", nullptr, | 137 Register(CONTENT_SETTINGS_TYPE_USB_CHOOSER_DATA, "usb-chooser-data", nullptr, |
| 138 WebsiteSettingsInfo::UNSYNCABLE, WebsiteSettingsInfo::NOT_LOSSY, | 138 WebsiteSettingsInfo::UNSYNCABLE, WebsiteSettingsInfo::NOT_LOSSY, |
| 139 WebsiteSettingsInfo::REQUESTING_ORIGIN_AND_TOP_LEVEL_ORIGIN_SCOPE, | 139 WebsiteSettingsInfo::REQUESTING_ORIGIN_AND_TOP_LEVEL_ORIGIN_SCOPE, |
| 140 DESKTOP | PLATFORM_ANDROID, | 140 DESKTOP | PLATFORM_ANDROID, |
| 141 WebsiteSettingsInfo::DONT_INHERIT_IN_INCOGNITO); | 141 WebsiteSettingsInfo::DONT_INHERIT_IN_INCOGNITO); |
| 142 Register(CONTENT_SETTINGS_TYPE_PROMPT_NO_DECISION_COUNT, |
| 143 "prompt-no-decision-count", nullptr, WebsiteSettingsInfo::UNSYNCABLE, |
| 144 WebsiteSettingsInfo::NOT_LOSSY, |
| 145 WebsiteSettingsInfo::REQUESTING_ORIGIN_ONLY_SCOPE, |
| 146 DESKTOP | PLATFORM_ANDROID, |
| 147 WebsiteSettingsInfo::INHERIT_IN_INCOGNITO); |
| 142 } | 148 } |
| 143 | 149 |
| 144 } // namespace content_settings | 150 } // namespace content_settings |
| OLD | NEW |