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

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

Issue 2359393002: Adds media license nodes to cookie tree model and cookies view. (Closed)
Patch Set: rebase Created 4 years, 2 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/local_shared_objects_container.h" 5 #include "chrome/browser/content_settings/local_shared_objects_container.h"
6 6
7 #include "base/memory/ptr_util.h" 7 #include "base/memory/ptr_util.h"
8 #include "chrome/browser/browsing_data/browsing_data_appcache_helper.h" 8 #include "chrome/browser/browsing_data/browsing_data_appcache_helper.h"
9 #include "chrome/browser/browsing_data/browsing_data_cache_storage_helper.h" 9 #include "chrome/browser/browsing_data/browsing_data_cache_storage_helper.h"
10 #include "chrome/browser/browsing_data/browsing_data_channel_id_helper.h" 10 #include "chrome/browser/browsing_data/browsing_data_channel_id_helper.h"
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 service_workers_->Reset(); 213 service_workers_->Reset();
214 cache_storages_->Reset(); 214 cache_storages_->Reset();
215 session_storages_->Reset(); 215 session_storages_->Reset();
216 } 216 }
217 217
218 std::unique_ptr<CookiesTreeModel> 218 std::unique_ptr<CookiesTreeModel>
219 LocalSharedObjectsContainer::CreateCookiesTreeModel() const { 219 LocalSharedObjectsContainer::CreateCookiesTreeModel() const {
220 LocalDataContainer* container = new LocalDataContainer( 220 LocalDataContainer* container = new LocalDataContainer(
221 cookies_, databases_, local_storages_, session_storages_, appcaches_, 221 cookies_, databases_, local_storages_, session_storages_, appcaches_,
222 indexed_dbs_, file_systems_, nullptr, channel_ids_, service_workers_, 222 indexed_dbs_, file_systems_, nullptr, channel_ids_, service_workers_,
223 cache_storages_, nullptr); 223 cache_storages_, nullptr, nullptr);
224 224
225 return base::MakeUnique<CookiesTreeModel>(container, nullptr); 225 return base::MakeUnique<CookiesTreeModel>(container, nullptr);
226 } 226 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698