| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_BROWSER_AUTOMATION_AUTOMATION_PROFILE_IMPL_H_ | 5 #ifndef CHROME_BROWSER_AUTOMATION_AUTOMATION_PROFILE_IMPL_H_ |
| 6 #define CHROME_BROWSER_AUTOMATION_AUTOMATION_PROFILE_IMPL_H_ | 6 #define CHROME_BROWSER_AUTOMATION_AUTOMATION_PROFILE_IMPL_H_ |
| 7 | 7 |
| 8 #include "chrome/browser/profile.h" | 8 #include "chrome/browser/profile.h" |
| 9 #include "net/url_request/url_request_context.h" | 9 #include "net/url_request/url_request_context.h" |
| 10 | 10 |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 } | 71 } |
| 72 virtual net::StrictTransportSecurityState* GetStrictTransportSecurityState() { | 72 virtual net::StrictTransportSecurityState* GetStrictTransportSecurityState() { |
| 73 return original_profile_->GetStrictTransportSecurityState(); | 73 return original_profile_->GetStrictTransportSecurityState(); |
| 74 } | 74 } |
| 75 virtual FaviconService* GetFaviconService(ServiceAccessType access) { | 75 virtual FaviconService* GetFaviconService(ServiceAccessType access) { |
| 76 return original_profile_->GetFaviconService(access); | 76 return original_profile_->GetFaviconService(access); |
| 77 } | 77 } |
| 78 virtual HistoryService* GetHistoryService(ServiceAccessType access) { | 78 virtual HistoryService* GetHistoryService(ServiceAccessType access) { |
| 79 return original_profile_->GetHistoryService(access); | 79 return original_profile_->GetHistoryService(access); |
| 80 } | 80 } |
| 81 virtual HistoryService* GetHistoryServiceWithoutCreating() { |
| 82 return original_profile_->GetHistoryServiceWithoutCreating(); |
| 83 } |
| 81 virtual WebDataService* GetWebDataService(ServiceAccessType access) { | 84 virtual WebDataService* GetWebDataService(ServiceAccessType access) { |
| 82 return original_profile_->GetWebDataService(access); | 85 return original_profile_->GetWebDataService(access); |
| 83 } | 86 } |
| 84 virtual PasswordStore* GetPasswordStore(ServiceAccessType access) { | 87 virtual PasswordStore* GetPasswordStore(ServiceAccessType access) { |
| 85 return original_profile_->GetPasswordStore(access); | 88 return original_profile_->GetPasswordStore(access); |
| 86 } | 89 } |
| 87 virtual PrefService* GetPrefs() { | 90 virtual PrefService* GetPrefs() { |
| 88 return original_profile_->GetPrefs(); | 91 return original_profile_->GetPrefs(); |
| 89 } | 92 } |
| 90 virtual TemplateURLModel* GetTemplateURLModel() { | 93 virtual TemplateURLModel* GetTemplateURLModel() { |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 Profile* original_profile_; | 210 Profile* original_profile_; |
| 208 scoped_refptr<net::CookieStore> alternate_cookie_store_; | 211 scoped_refptr<net::CookieStore> alternate_cookie_store_; |
| 209 scoped_refptr<URLRequestContext> alternate_reqeust_context_; | 212 scoped_refptr<URLRequestContext> alternate_reqeust_context_; |
| 210 int tab_handle_; | 213 int tab_handle_; |
| 211 | 214 |
| 212 private: | 215 private: |
| 213 DISALLOW_COPY_AND_ASSIGN(AutomationProfileImpl); | 216 DISALLOW_COPY_AND_ASSIGN(AutomationProfileImpl); |
| 214 }; | 217 }; |
| 215 | 218 |
| 216 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROFILE_IMPL_H_ | 219 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROFILE_IMPL_H_ |
| OLD | NEW |