Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(275)

Side by Side Diff: chrome/test/testing_profile.cc

Issue 6520008: Device policy infrastructure (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« chrome/common/pref_names.cc ('K') | « chrome/test/testing_profile.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« chrome/common/pref_names.cc ('K') | « chrome/test/testing_profile.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698