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

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

Issue 340067: database_dispatcher_host changes. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Addressed Michael's latest comments. 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/DEPS ('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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 } 44 }
45 virtual Profile* GetOffTheRecordProfile() { 45 virtual Profile* GetOffTheRecordProfile() {
46 return original_profile_->GetOffTheRecordProfile(); 46 return original_profile_->GetOffTheRecordProfile();
47 } 47 }
48 virtual void DestroyOffTheRecordProfile() { 48 virtual void DestroyOffTheRecordProfile() {
49 return original_profile_->DestroyOffTheRecordProfile(); 49 return original_profile_->DestroyOffTheRecordProfile();
50 } 50 }
51 virtual Profile* GetOriginalProfile() { 51 virtual Profile* GetOriginalProfile() {
52 return original_profile_->GetOriginalProfile(); 52 return original_profile_->GetOriginalProfile();
53 } 53 }
54 virtual webkit_database::DatabaseTracker* GetDatabaseTracker() {
55 return original_profile_->GetDatabaseTracker();
56 }
54 virtual VisitedLinkMaster* GetVisitedLinkMaster() { 57 virtual VisitedLinkMaster* GetVisitedLinkMaster() {
55 return original_profile_->GetVisitedLinkMaster(); 58 return original_profile_->GetVisitedLinkMaster();
56 } 59 }
57 virtual ExtensionsService* GetExtensionsService() { 60 virtual ExtensionsService* GetExtensionsService() {
58 return original_profile_->GetExtensionsService(); 61 return original_profile_->GetExtensionsService();
59 } 62 }
60 virtual UserScriptMaster* GetUserScriptMaster() { 63 virtual UserScriptMaster* GetUserScriptMaster() {
61 return original_profile_->GetUserScriptMaster(); 64 return original_profile_->GetUserScriptMaster();
62 } 65 }
63 virtual ExtensionDevToolsManager* GetExtensionDevToolsManager() { 66 virtual ExtensionDevToolsManager* GetExtensionDevToolsManager() {
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 protected: 231 protected:
229 Profile* original_profile_; 232 Profile* original_profile_;
230 ChromeURLRequestContextGetter* alternate_request_context_; 233 ChromeURLRequestContextGetter* alternate_request_context_;
231 int tab_handle_; 234 int tab_handle_;
232 235
233 private: 236 private:
234 DISALLOW_COPY_AND_ASSIGN(AutomationProfileImpl); 237 DISALLOW_COPY_AND_ASSIGN(AutomationProfileImpl);
235 }; 238 };
236 239
237 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROFILE_IMPL_H_ 240 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROFILE_IMPL_H_
OLDNEW
« no previous file with comments | « chrome/DEPS ('k') | chrome/browser/profile.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698