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

Unified Diff: chrome/browser/ui/cocoa/content_settings/cookie_details.mm

Issue 7692016: Delete indexedDBs from the cookie tree ui. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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/cocoa/content_settings/cookie_details.mm
===================================================================
--- chrome/browser/ui/cocoa/content_settings/cookie_details.mm (revision 97928)
+++ chrome/browser/ui/cocoa/content_settings/cookie_details.mm (working copy)
@@ -243,7 +243,8 @@
if ((self = [super init])) {
type_ = kCocoaCookieDetailsTypeTreeIndexedDB;
canEditExpiration_ = NO;
- domain_.reset([base::SysUTF8ToNSString(indexedDBInfo->origin) retain]);
+ domain_.reset([base::SysUTF8ToNSString(
+ indexedDBInfo->origin.spec()) retain]);
fileSize_.reset([base::SysUTF16ToNSString(
ui::FormatBytes(indexedDBInfo->size)) retain]);
lastModified_.reset([base::SysUTF16ToNSString(

Powered by Google App Engine
This is Rietveld 408576698