| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |