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

Unified Diff: chrome/browser/gtk/gtk_chrome_cookie_view.cc

Issue 1317004: Stop abusing cookie strings for local storage and database. (Closed)
Patch Set: s/DATABASE_NAME_LABEL/DATABASE_NAME/ Created 10 years, 9 months 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
« no previous file with comments | « chrome/app/nibs/CookieDetailsView.xib ('k') | chrome/browser/views/database_open_info_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/gtk/gtk_chrome_cookie_view.cc
diff --git a/chrome/browser/gtk/gtk_chrome_cookie_view.cc b/chrome/browser/gtk/gtk_chrome_cookie_view.cc
index b4a823d71344de5084080093c62203de141d242e..94bb9c1c726033bd6f1d081f5f69c4c3f6ced5d4 100644
--- a/chrome/browser/gtk/gtk_chrome_cookie_view.cc
+++ b/chrome/browser/gtk/gtk_chrome_cookie_view.cc
@@ -312,10 +312,10 @@ static void gtk_chrome_cookie_view_init(GtkChromeCookieView *self) {
InitDetailRow(row++, IDS_COOKIES_COOKIE_DOMAIN_LABEL,
self->local_storage_item_table_,
&self->local_storage_item_origin_entry_);
- InitDetailRow(row++, IDS_COOKIES_COOKIE_NAME_LABEL,
+ InitDetailRow(row++, IDS_COOKIES_LOCAL_STORAGE_KEY_LABEL,
self->local_storage_item_table_,
&self->local_storage_item_key_entry_);
- InitDetailRow(row++, IDS_COOKIES_COOKIE_CONTENT_LABEL,
+ InitDetailRow(row++, IDS_COOKIES_LOCAL_STORAGE_VALUE_LABEL,
self->local_storage_item_table_,
&self->local_storage_item_value_entry_);
@@ -330,7 +330,7 @@ static void gtk_chrome_cookie_view_init(GtkChromeCookieView *self) {
InitDetailRow(row++, IDS_COOKIES_COOKIE_DOMAIN_LABEL,
self->database_accessed_table_,
&self->database_accessed_origin_entry_);
- InitDetailRow(row++, IDS_COOKIES_COOKIE_NAME_LABEL,
+ InitDetailRow(row++, IDS_COOKIES_WEB_DATABASE_NAME,
self->database_accessed_table_,
&self->database_accessed_name_entry_);
« no previous file with comments | « chrome/app/nibs/CookieDetailsView.xib ('k') | chrome/browser/views/database_open_info_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698