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

Unified Diff: chrome/browser/ui/webui/options/cookies_view_handler.cc

Issue 7355025: Creat BrowsingDataCookieHelper and CannedBrowsingDataCookieHelper for logging cookies at UI thread. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 9 years, 5 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/options/cookies_view_handler.cc
===================================================================
--- chrome/browser/ui/webui/options/cookies_view_handler.cc (revision 92558)
+++ chrome/browser/ui/webui/options/cookies_view_handler.cc (working copy)
@@ -142,8 +142,7 @@
if (!cookies_tree_model_.get()) {
Profile* profile = web_ui_->GetProfile();
cookies_tree_model_.reset(new CookiesTreeModel(
- profile->GetRequestContext()->DONTUSEME_GetCookieStore()->
- GetCookieMonster(),
+ new BrowsingDataCookieHelper(profile),
new BrowsingDataDatabaseHelper(profile),
new BrowsingDataLocalStorageHelper(profile),
NULL,

Powered by Google App Engine
This is Rietveld 408576698