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

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: Created 4 years, 3 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 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 service_workers_->Reset(); 215 service_workers_->Reset();
216 cache_storages_->Reset(); 216 cache_storages_->Reset();
217 session_storages_->Reset(); 217 session_storages_->Reset();
218 } 218 }
219 219
220 std::unique_ptr<CookiesTreeModel> 220 std::unique_ptr<CookiesTreeModel>
221 LocalSharedObjectsContainer::CreateCookiesTreeModel() const { 221 LocalSharedObjectsContainer::CreateCookiesTreeModel() const {
222 LocalDataContainer* container = new LocalDataContainer( 222 LocalDataContainer* container = new LocalDataContainer(
223 cookies(), databases(), local_storages(), session_storages(), appcaches(), 223 cookies(), databases(), local_storages(), session_storages(), appcaches(),
224 indexed_dbs(), file_systems(), nullptr, channel_ids(), service_workers(), 224 indexed_dbs(), file_systems(), nullptr, channel_ids(), service_workers(),
225 cache_storages(), nullptr); 225 cache_storages(), nullptr, nullptr);
226 226
227 return base::MakeUnique<CookiesTreeModel>(container, nullptr); 227 return base::MakeUnique<CookiesTreeModel>(container, nullptr);
228 } 228 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698