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/testing_profile.h" | 5 #include "chrome/test/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 737 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
748 } | 748 } |
749 | 749 |
750 ExtensionInfoMap* TestingProfile::GetExtensionInfoMap() { | 750 ExtensionInfoMap* TestingProfile::GetExtensionInfoMap() { |
751 return NULL; | 751 return NULL; |
752 } | 752 } |
753 | 753 |
754 PromoCounter* TestingProfile::GetInstantPromoCounter() { | 754 PromoCounter* TestingProfile::GetInstantPromoCounter() { |
755 return NULL; | 755 return NULL; |
756 } | 756 } |
757 | 757 |
758 policy::ProfilePolicyContext* TestingProfile::GetPolicyContext() { | 758 policy::ProfilePolicyConnector* TestingProfile::GetPolicyConnector() { |
759 return NULL; | 759 return NULL; |
760 } | 760 } |
761 | 761 |
762 PrerenderManager* TestingProfile::GetPrerenderManager() { | 762 PrerenderManager* TestingProfile::GetPrerenderManager() { |
763 return NULL; | 763 return NULL; |
764 } | 764 } |
765 | 765 |
766 PrefService* TestingProfile::GetOffTheRecordPrefs() { | 766 PrefService* TestingProfile::GetOffTheRecordPrefs() { |
767 return NULL; | 767 return NULL; |
768 } | 768 } |
769 | 769 |
770 void TestingProfile::DestroyWebDataService() { | 770 void TestingProfile::DestroyWebDataService() { |
771 if (!web_data_service_.get()) | 771 if (!web_data_service_.get()) |
772 return; | 772 return; |
773 | 773 |
774 web_data_service_->Shutdown(); | 774 web_data_service_->Shutdown(); |
775 } | 775 } |
OLD | NEW |