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

Side by Side Diff: chrome/browser/content_settings/tab_specific_content_settings.cc

Issue 7387007: Adding usage and quota entry to chrome://settings/cookies. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed leak suppressions. 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/content_settings/tab_specific_content_settings.h" 5 #include "chrome/browser/content_settings/tab_specific_content_settings.h"
6 6
7 #include <list> 7 #include <list>
8 8
9 #include "base/lazy_instance.h" 9 #include "base/lazy_instance.h"
10 #include "base/utf_string_conversions.h" 10 #include "base/utf_string_conversions.h"
(...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after
519 519
520 CookiesTreeModel* 520 CookiesTreeModel*
521 TabSpecificContentSettings::LocalSharedObjectsContainer::GetCookiesTreeModel() { 521 TabSpecificContentSettings::LocalSharedObjectsContainer::GetCookiesTreeModel() {
522 return new CookiesTreeModel(cookies_, 522 return new CookiesTreeModel(cookies_,
523 databases_->Clone(), 523 databases_->Clone(),
524 local_storages_->Clone(), 524 local_storages_->Clone(),
525 session_storages_->Clone(), 525 session_storages_->Clone(),
526 appcaches_->Clone(), 526 appcaches_->Clone(),
527 indexed_dbs_->Clone(), 527 indexed_dbs_->Clone(),
528 file_systems_->Clone(), 528 file_systems_->Clone(),
529 NULL,
529 true); 530 true);
530 } 531 }
OLDNEW
« no previous file with comments | « chrome/browser/browsing_data_quota_helper_unittest.cc ('k') | chrome/browser/cookies_tree_model.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698