Index: chrome/browser/tab_contents/tab_specific_content_settings.cc |
diff --git a/chrome/browser/tab_contents/tab_specific_content_settings.cc b/chrome/browser/tab_contents/tab_specific_content_settings.cc |
index f0989a3c48401c8ba557a85757f00206994b4721..edafe6cd2f9e2d6d0ff46d24c8857d011e9d6130 100644 |
--- a/chrome/browser/tab_contents/tab_specific_content_settings.cc |
+++ b/chrome/browser/tab_contents/tab_specific_content_settings.cc |
@@ -110,16 +110,15 @@ void TabSpecificContentSettings::OnCookieAccessed( |
void TabSpecificContentSettings::OnIndexedDBAccessed( |
const GURL& url, |
- const string16& name, |
const string16& description, |
bool blocked_by_policy) { |
if (blocked_by_policy) { |
blocked_local_shared_objects_.indexed_dbs()->AddIndexedDB( |
- url, name, description); |
+ url, description); |
OnContentBlocked(CONTENT_SETTINGS_TYPE_COOKIES, std::string()); |
}else { |
allowed_local_shared_objects_.indexed_dbs()->AddIndexedDB( |
- url, name, description); |
+ url, description); |
OnContentAccessed(CONTENT_SETTINGS_TYPE_COOKIES); |
} |
} |