Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Side by Side Diff: chrome/browser/automation/automation_profile_impl.h

Issue 328031: Refactor paste and go out of AutocompleteEdit. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: style fixes Created 11 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/autocomplete/autocomplete_edit.cc ('k') | chrome/browser/profile.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « chrome/browser/autocomplete/autocomplete_edit.cc ('k') | chrome/browser/profile.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698