Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(564)

Unified Diff: chrome/browser/tab_contents/tab_specific_content_settings.cc

Issue 4682002: Remove "name" field from indexed databases. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
}
}
« no previous file with comments | « chrome/browser/tab_contents/tab_specific_content_settings.h ('k') | chrome/browser/views/indexed_db_info_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698