| Index: chrome/browser/content_settings/cookie_settings.cc
|
| diff --git a/chrome/browser/content_settings/cookie_settings.cc b/chrome/browser/content_settings/cookie_settings.cc
|
| index 742cc7308679279bdb50997e736a3f8e890dfa5c..ff27e3407a18adf7110289d501e72efa9a3fe022 100644
|
| --- a/chrome/browser/content_settings/cookie_settings.cc
|
| +++ b/chrome/browser/content_settings/cookie_settings.cc
|
| @@ -98,9 +98,6 @@ CookieSettings::CookieSettings(
|
| pref_change_registrar_.Add(prefs::kBlockThirdPartyCookies, this);
|
| }
|
|
|
| -CookieSettings::~CookieSettings() {
|
| -}
|
| -
|
| ContentSetting
|
| CookieSettings::GetDefaultCookieSetting(std::string* provider_id) const {
|
| return host_content_settings_map_->GetDefaultContentSetting(
|
| @@ -227,6 +224,8 @@ ContentSetting CookieSettings::GetCookieSetting(
|
| return content_settings::ValueToContentSetting(value.get());
|
| }
|
|
|
| +CookieSettings::~CookieSettings() {}
|
| +
|
| bool CookieSettings::ShouldBlockThirdPartyCookies() const {
|
| base::AutoLock auto_lock(lock_);
|
| return block_third_party_cookies_;
|
|
|