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

Unified Diff: chrome/browser/cocoa/preferences_window_controller.mm

Issue 523139: Adds local storage nodes to cookie tree model and cookies view. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 10 years, 11 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/browser/cocoa/cookies_window_controller_unittest.mm ('k') | chrome/browser/cookies_tree_model.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/cocoa/preferences_window_controller.mm
===================================================================
--- chrome/browser/cocoa/preferences_window_controller.mm (revision 36995)
+++ chrome/browser/cocoa/preferences_window_controller.mm (working copy)
@@ -1315,8 +1315,11 @@
// Shows the cookies controller.
- (IBAction)showCookies:(id)sender {
// The controller will clean itself up.
+ BrowsingDataLocalStorageHelper* storageHelper =
+ new BrowsingDataLocalStorageHelper(profile_);
CookiesWindowController* controller =
- [[CookiesWindowController alloc] initWithProfile:profile_];
+ [[CookiesWindowController alloc] initWithProfile:profile_
+ storageHelper:storageHelper];
[controller attachSheetTo:[self window]];
}
« no previous file with comments | « chrome/browser/cocoa/cookies_window_controller_unittest.mm ('k') | chrome/browser/cookies_tree_model.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698