| 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_util.h" | 9 #include "base/file_util.h" |
| 10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 } | 76 } |
| 77 virtual VisitedLinkMaster* GetVisitedLinkMaster() { | 77 virtual VisitedLinkMaster* GetVisitedLinkMaster() { |
| 78 return NULL; | 78 return NULL; |
| 79 } | 79 } |
| 80 virtual ExtensionsService* GetExtensionsService() { | 80 virtual ExtensionsService* GetExtensionsService() { |
| 81 return NULL; | 81 return NULL; |
| 82 } | 82 } |
| 83 virtual UserScriptMaster* GetUserScriptMaster() { | 83 virtual UserScriptMaster* GetUserScriptMaster() { |
| 84 return NULL; | 84 return NULL; |
| 85 } | 85 } |
| 86 virtual ExtensionDevToolsManager* GetExtensionDevToolsManager() { |
| 87 return NULL; |
| 88 } |
| 86 virtual ExtensionProcessManager* GetExtensionProcessManager() { | 89 virtual ExtensionProcessManager* GetExtensionProcessManager() { |
| 87 return NULL; | 90 return NULL; |
| 88 } | 91 } |
| 89 virtual ExtensionMessageService* GetExtensionMessageService() { | 92 virtual ExtensionMessageService* GetExtensionMessageService() { |
| 90 return NULL; | 93 return NULL; |
| 91 } | 94 } |
| 92 virtual SSLHostState* GetSSLHostState() { | 95 virtual SSLHostState* GetSSLHostState() { |
| 93 return NULL; | 96 return NULL; |
| 94 } | 97 } |
| 95 virtual net::ForceTLSState* GetForceTLSState() { | 98 virtual net::ForceTLSState* GetForceTLSState() { |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 | 271 |
| 269 std::wstring id_; | 272 std::wstring id_; |
| 270 | 273 |
| 271 bool off_the_record_; | 274 bool off_the_record_; |
| 272 | 275 |
| 273 // Did the last session exit cleanly? Default is true. | 276 // Did the last session exit cleanly? Default is true. |
| 274 bool last_session_exited_cleanly_; | 277 bool last_session_exited_cleanly_; |
| 275 }; | 278 }; |
| 276 | 279 |
| 277 #endif // CHROME_TEST_TESTING_PROFILE_H_ | 280 #endif // CHROME_TEST_TESTING_PROFILE_H_ |
| OLD | NEW |