| OLD | NEW |
| 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 505 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 516 | 516 |
| 517 CookiesTreeModel* | 517 CookiesTreeModel* |
| 518 TabSpecificContentSettings::LocalSharedObjectsContainer::GetCookiesTreeModel() { | 518 TabSpecificContentSettings::LocalSharedObjectsContainer::GetCookiesTreeModel() { |
| 519 return new CookiesTreeModel(cookies_, | 519 return new CookiesTreeModel(cookies_, |
| 520 databases_->Clone(), | 520 databases_->Clone(), |
| 521 local_storages_->Clone(), | 521 local_storages_->Clone(), |
| 522 session_storages_->Clone(), | 522 session_storages_->Clone(), |
| 523 appcaches_->Clone(), | 523 appcaches_->Clone(), |
| 524 indexed_dbs_->Clone(), | 524 indexed_dbs_->Clone(), |
| 525 file_systems_->Clone(), | 525 file_systems_->Clone(), |
| 526 NULL, |
| 526 true); | 527 true); |
| 527 } | 528 } |
| OLD | NEW |