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/path_service.h" | 9 #include "base/path_service.h" |
10 #include "base/file_util.h" | 10 #include "base/file_util.h" |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 } | 157 } |
158 virtual void ResetTabRestoreService() { | 158 virtual void ResetTabRestoreService() { |
159 } | 159 } |
160 virtual void ReinitializeSpellChecker() { | 160 virtual void ReinitializeSpellChecker() { |
161 } | 161 } |
162 virtual SpellChecker* GetSpellChecker() { | 162 virtual SpellChecker* GetSpellChecker() { |
163 return NULL; | 163 return NULL; |
164 } | 164 } |
165 virtual void MarkAsCleanShutdown() { | 165 virtual void MarkAsCleanShutdown() { |
166 } | 166 } |
| 167 virtual void InitExtensions() { |
| 168 } |
167 | 169 |
168 #ifdef CHROME_PERSONALIZATION | 170 #ifdef CHROME_PERSONALIZATION |
169 virtual ProfilePersonalization* GetProfilePersonalization() { | 171 virtual ProfilePersonalization* GetProfilePersonalization() { |
170 return NULL; | 172 return NULL; |
171 } | 173 } |
172 #endif | 174 #endif |
173 | 175 |
174 protected: | 176 protected: |
175 // The path of the profile; the various database and other files are relative | 177 // The path of the profile; the various database and other files are relative |
176 // to this. | 178 // to this. |
(...skipping 24 matching lines...) Expand all Loading... |
201 | 203 |
202 std::wstring id_; | 204 std::wstring id_; |
203 | 205 |
204 bool off_the_record_; | 206 bool off_the_record_; |
205 | 207 |
206 // Did the last session exit cleanly? Default is true. | 208 // Did the last session exit cleanly? Default is true. |
207 bool last_session_exited_cleanly_; | 209 bool last_session_exited_cleanly_; |
208 }; | 210 }; |
209 | 211 |
210 #endif // CHROME_TEST_TESTING_PROFILE_H_ | 212 #endif // CHROME_TEST_TESTING_PROFILE_H_ |
OLD | NEW |