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/net/chrome_url_request_context.h" | 8 #include "chrome/browser/net/chrome_url_request_context.h" |
9 #include "chrome/browser/profile.h" | 9 #include "chrome/browser/profile.h" |
10 #include "net/url_request/url_request_context.h" | 10 #include "net/url_request/url_request_context.h" |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 } | 77 } |
78 virtual FaviconService* GetFaviconService(ServiceAccessType access) { | 78 virtual FaviconService* GetFaviconService(ServiceAccessType access) { |
79 return original_profile_->GetFaviconService(access); | 79 return original_profile_->GetFaviconService(access); |
80 } | 80 } |
81 virtual HistoryService* GetHistoryService(ServiceAccessType access) { | 81 virtual HistoryService* GetHistoryService(ServiceAccessType access) { |
82 return original_profile_->GetHistoryService(access); | 82 return original_profile_->GetHistoryService(access); |
83 } | 83 } |
84 virtual HistoryService* GetHistoryServiceWithoutCreating() { | 84 virtual HistoryService* GetHistoryServiceWithoutCreating() { |
85 return original_profile_->GetHistoryServiceWithoutCreating(); | 85 return original_profile_->GetHistoryServiceWithoutCreating(); |
86 } | 86 } |
| 87 virtual SearchVersusNavigateClassifier* GetSearchVersusNavigateClassifier() { |
| 88 return original_profile_->GetSearchVersusNavigateClassifier(); |
| 89 } |
87 virtual WebDataService* GetWebDataService(ServiceAccessType access) { | 90 virtual WebDataService* GetWebDataService(ServiceAccessType access) { |
88 return original_profile_->GetWebDataService(access); | 91 return original_profile_->GetWebDataService(access); |
89 } | 92 } |
90 virtual WebDataService* GetWebDataServiceWithoutCreating() { | 93 virtual WebDataService* GetWebDataServiceWithoutCreating() { |
91 return original_profile_->GetWebDataServiceWithoutCreating(); | 94 return original_profile_->GetWebDataServiceWithoutCreating(); |
92 } | 95 } |
93 virtual PasswordStore* GetPasswordStore(ServiceAccessType access) { | 96 virtual PasswordStore* GetPasswordStore(ServiceAccessType access) { |
94 return original_profile_->GetPasswordStore(access); | 97 return original_profile_->GetPasswordStore(access); |
95 } | 98 } |
96 virtual PrefService* GetPrefs() { | 99 virtual PrefService* GetPrefs() { |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 protected: | 217 protected: |
215 Profile* original_profile_; | 218 Profile* original_profile_; |
216 ChromeURLRequestContextGetter* alternate_request_context_; | 219 ChromeURLRequestContextGetter* alternate_request_context_; |
217 int tab_handle_; | 220 int tab_handle_; |
218 | 221 |
219 private: | 222 private: |
220 DISALLOW_COPY_AND_ASSIGN(AutomationProfileImpl); | 223 DISALLOW_COPY_AND_ASSIGN(AutomationProfileImpl); |
221 }; | 224 }; |
222 | 225 |
223 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROFILE_IMPL_H_ | 226 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROFILE_IMPL_H_ |
OLD | NEW |