OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_TESTING_PROFILE_H_ | 5 #ifndef CHROME_TEST_TESTING_PROFILE_H_ |
6 #define CHROME_TEST_TESTING_PROFILE_H_ | 6 #define CHROME_TEST_TESTING_PROFILE_H_ |
7 | 7 |
8 #include "base/base_paths.h" | 8 #include "base/base_paths.h" |
9 #include "base/file_path.h" | 9 #include "base/file_path.h" |
10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 } | 95 } |
96 virtual HistoryService* GetHistoryService(ServiceAccessType access) { | 96 virtual HistoryService* GetHistoryService(ServiceAccessType access) { |
97 return history_service_.get(); | 97 return history_service_.get(); |
98 } | 98 } |
99 void set_has_history_service(bool has_history_service) { | 99 void set_has_history_service(bool has_history_service) { |
100 has_history_service_ = has_history_service; | 100 has_history_service_ = has_history_service; |
101 } | 101 } |
102 virtual WebDataService* GetWebDataService(ServiceAccessType access) { | 102 virtual WebDataService* GetWebDataService(ServiceAccessType access) { |
103 return NULL; | 103 return NULL; |
104 } | 104 } |
| 105 virtual PasswordStore* GetPasswordStore(ServiceAccessType access) { |
| 106 return NULL; |
| 107 } |
105 virtual PrefService* GetPrefs() { | 108 virtual PrefService* GetPrefs() { |
106 FilePath prefs_filename; | 109 FilePath prefs_filename; |
107 PathService::Get(base::DIR_TEMP, &prefs_filename); | 110 PathService::Get(base::DIR_TEMP, &prefs_filename); |
108 prefs_filename = | 111 prefs_filename = |
109 prefs_filename.Append(FILE_PATH_LITERAL("TestPreferences")); | 112 prefs_filename.Append(FILE_PATH_LITERAL("TestPreferences")); |
110 if (!prefs_.get()) { | 113 if (!prefs_.get()) { |
111 prefs_.reset(new PrefService(prefs_filename, NULL)); | 114 prefs_.reset(new PrefService(prefs_filename, NULL)); |
112 Profile::RegisterUserPrefs(prefs_.get()); | 115 Profile::RegisterUserPrefs(prefs_.get()); |
113 browser::RegisterAllPrefs(prefs_.get(), prefs_.get()); | 116 browser::RegisterAllPrefs(prefs_.get(), prefs_.get()); |
114 } | 117 } |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
244 | 247 |
245 std::wstring id_; | 248 std::wstring id_; |
246 | 249 |
247 bool off_the_record_; | 250 bool off_the_record_; |
248 | 251 |
249 // Did the last session exit cleanly? Default is true. | 252 // Did the last session exit cleanly? Default is true. |
250 bool last_session_exited_cleanly_; | 253 bool last_session_exited_cleanly_; |
251 }; | 254 }; |
252 | 255 |
253 #endif // CHROME_TEST_TESTING_PROFILE_H_ | 256 #endif // CHROME_TEST_TESTING_PROFILE_H_ |
OLD | NEW |