Index: components/content_settings/core/browser/host_content_settings_map.h |
diff --git a/components/content_settings/core/browser/host_content_settings_map.h b/components/content_settings/core/browser/host_content_settings_map.h |
index c9f666a6267bfe0899b517272122d4d32439b9e2..bb2230918c9f5c9f1357be2d894737a9f18b6d8e 100644 |
--- a/components/content_settings/core/browser/host_content_settings_map.h |
+++ b/components/content_settings/core/browser/host_content_settings_map.h |
@@ -278,6 +278,19 @@ class HostContentSettingsMap : public content_settings::Observer, |
// Passes ownership of |clock|. |
void SetPrefClockForTesting(std::unique_ptr<base::Clock> clock); |
+ // Migrate old domain scoped ALLOW settings to be origin scoped for |
+ // ContentSettingsTypes which are domain scoped. Only narrow down ALLOW |
+ // domain settings to origins so that this will not cause privacy/security |
+ // issues. |
+ // |
+ // |after_sync| will be false when called upon construction of this object and |
+ // true when called by the sync layer after sync is completed. |
+ // TODO(lshang): https://crbug.com/621398 Remove this when clients have |
+ // migrated (~M56). |
+ void MigrateDomainScopedSettings(bool after_sync); |
+ |
+ base::WeakPtr<HostContentSettingsMap> GetWeakPtr(); |
+ |
private: |
friend class base::RefCountedThreadSafe<HostContentSettingsMap>; |
@@ -316,17 +329,6 @@ class HostContentSettingsMap : public content_settings::Observer, |
// leave in some code to remove old-format settings for a long time. |
void MigrateKeygenSettings(); |
- // Migrate old domain scoped ALLOW settings to be origin scoped for |
- // ContentSettingsTypes which are domain scoped. Only narrow down ALLOW |
- // domain settings to origins so that this will not cause privacy/security |
- // issues. |
- // |
- // |after_sync| will be false when called upon construction of this object and |
- // true when called by the sync layer after sync is completed. |
- // TODO(lshang): https://crbug.com/621398 Remove this when clients have |
- // migrated (~M56). |
- void MigrateDomainScopedSettings(bool after_sync); |
- |
// Collect UMA data about the number of exceptions. |
void RecordNumberOfExceptions(); |
@@ -403,6 +405,8 @@ class HostContentSettingsMap : public content_settings::Observer, |
base::ObserverList<content_settings::Observer> observers_; |
+ base::WeakPtrFactory<HostContentSettingsMap> weak_ptr_factory_; |
+ |
DISALLOW_COPY_AND_ASSIGN(HostContentSettingsMap); |
}; |