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

Unified Diff: chrome/browser/ui/webui/cookies_tree_model_util.cc

Issue 14156003: Support multiple storage partitions in chrome://indexeddb-internals/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix cocoa unit test Created 7 years, 8 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
Index: chrome/browser/ui/webui/cookies_tree_model_util.cc
diff --git a/chrome/browser/ui/webui/cookies_tree_model_util.cc b/chrome/browser/ui/webui/cookies_tree_model_util.cc
index 2a20f09cc11400158b1c78ff84261e894e5d6068..53eadaa66425f8f41d7fa7b9a755284737daa6af 100644
--- a/chrome/browser/ui/webui/cookies_tree_model_util.cc
+++ b/chrome/browser/ui/webui/cookies_tree_model_util.cc
@@ -184,10 +184,10 @@ bool CookiesTreeModelUtil::GetCookieTreeNodeDictionary(
const content::IndexedDBInfo& indexed_db_info =
*node.GetDetailedInfo().indexed_db_info;
- dict->SetString(kKeyOrigin, indexed_db_info.origin.spec());
- dict->SetString(kKeySize, ui::FormatBytes(indexed_db_info.size));
+ dict->SetString(kKeyOrigin, indexed_db_info.origin_.spec());
+ dict->SetString(kKeySize, ui::FormatBytes(indexed_db_info.size_));
dict->SetString(kKeyModified, UTF16ToUTF8(
- base::TimeFormatFriendlyDateAndTime(indexed_db_info.last_modified)));
+ base::TimeFormatFriendlyDateAndTime(indexed_db_info.last_modified_)));
break;
}
« no previous file with comments | « chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc ('k') | content/browser/indexed_db/indexed_db_context_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698