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

Side by Side Diff: chrome/test/base/testing_profile_manager.h

Issue 12223091: Split testing_pref_service.h/.cc into two parts, generic vs. Chrome-specific. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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
OLDNEW
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 #ifndef CHROME_TEST_BASE_TESTING_PROFILE_MANAGER_H_ 5 #ifndef CHROME_TEST_BASE_TESTING_PROFILE_MANAGER_H_
6 #define CHROME_TEST_BASE_TESTING_PROFILE_MANAGER_H_ 6 #define CHROME_TEST_BASE_TESTING_PROFILE_MANAGER_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 10
11 #include "base/compiler_specific.h" 11 #include "base/compiler_specific.h"
12 #include "base/files/scoped_temp_dir.h" 12 #include "base/files/scoped_temp_dir.h"
13 #include "base/string16.h" 13 #include "base/string16.h"
14 #include "chrome/test/base/testing_pref_service.h" 14 #include "chrome/test/base/testing_pref_service_syncable.h"
Mattias Nissler (ping if slow) 2013/02/12 13:53:32 needed?
15 15
16 class ProfileInfoCache; 16 class ProfileInfoCache;
17 class ProfileManager; 17 class ProfileManager;
18 class TestingBrowserProcess; 18 class TestingBrowserProcess;
19 class TestingProfile; 19 class TestingProfile;
20 20
21 // The TestingProfileManager is a TestingProfile factory for a multi-profile 21 // The TestingProfileManager is a TestingProfile factory for a multi-profile
22 // environment. It will bring up a full ProfileManager and attach it to the 22 // environment. It will bring up a full ProfileManager and attach it to the
23 // TestingBrowserProcess set up in your test. 23 // TestingBrowserProcess set up in your test.
24 // 24 //
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 // Weak reference to the profile manager. 86 // Weak reference to the profile manager.
87 ProfileManager* profile_manager_; 87 ProfileManager* profile_manager_;
88 88
89 // Map of profile_name to TestingProfile* from CreateTestingProfile(). 89 // Map of profile_name to TestingProfile* from CreateTestingProfile().
90 TestingProfilesMap testing_profiles_; 90 TestingProfilesMap testing_profiles_;
91 91
92 DISALLOW_COPY_AND_ASSIGN(TestingProfileManager); 92 DISALLOW_COPY_AND_ASSIGN(TestingProfileManager);
93 }; 93 };
94 94
95 #endif // CHROME_TEST_BASE_TESTING_PROFILE_MANAGER_H_ 95 #endif // CHROME_TEST_BASE_TESTING_PROFILE_MANAGER_H_
OLDNEW
« chrome/test/base/testing_pref_service_syncable.cc ('K') | « chrome/test/base/testing_profile.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698