| 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 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 } |
| OLD | NEW |