| 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/test/base/testing_profile.h" | 5 #include "chrome/test/base/testing_profile.h" |
| 6 | 6 |
| 7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
| 8 | 8 |
| 9 #include "base/base_paths.h" | 9 #include "base/base_paths.h" |
| 10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
| (...skipping 771 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 782 quota::SpecialStoragePolicy* TestingProfile::GetSpecialStoragePolicy() { | 782 quota::SpecialStoragePolicy* TestingProfile::GetSpecialStoragePolicy() { |
| 783 return GetExtensionSpecialStoragePolicy(); | 783 return GetExtensionSpecialStoragePolicy(); |
| 784 } | 784 } |
| 785 | 785 |
| 786 void TestingProfile::DestroyWebDataService() { | 786 void TestingProfile::DestroyWebDataService() { |
| 787 if (!web_data_service_.get()) | 787 if (!web_data_service_.get()) |
| 788 return; | 788 return; |
| 789 | 789 |
| 790 web_data_service_->Shutdown(); | 790 web_data_service_->Shutdown(); |
| 791 } | 791 } |
| 792 |
| 793 policy::HostBlacklistManager* TestingProfile::GetHostBlacklistManager() { |
| 794 return NULL; |
| 795 } |
| OLD | NEW |