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

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

Issue 159882: Implements extensions devtools API (Closed)
Patch Set: Fixes flakiness in tests by grabbing tab ID in C++ land and passing it down Created 11 years, 4 months 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
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_devtools_bridge.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) 2006-2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 } 47 }
48 virtual VisitedLinkMaster* GetVisitedLinkMaster() { 48 virtual VisitedLinkMaster* GetVisitedLinkMaster() {
49 return original_profile_->GetVisitedLinkMaster(); 49 return original_profile_->GetVisitedLinkMaster();
50 } 50 }
51 virtual ExtensionsService* GetExtensionsService() { 51 virtual ExtensionsService* GetExtensionsService() {
52 return original_profile_->GetExtensionsService(); 52 return original_profile_->GetExtensionsService();
53 } 53 }
54 virtual UserScriptMaster* GetUserScriptMaster() { 54 virtual UserScriptMaster* GetUserScriptMaster() {
55 return original_profile_->GetUserScriptMaster(); 55 return original_profile_->GetUserScriptMaster();
56 } 56 }
57 virtual ExtensionDevToolsManager* GetExtensionDevToolsManager() {
58 return original_profile_->GetExtensionDevToolsManager();
59 }
57 virtual ExtensionProcessManager* GetExtensionProcessManager() { 60 virtual ExtensionProcessManager* GetExtensionProcessManager() {
58 return original_profile_->GetExtensionProcessManager(); 61 return original_profile_->GetExtensionProcessManager();
59 } 62 }
60 virtual ExtensionMessageService* GetExtensionMessageService() { 63 virtual ExtensionMessageService* GetExtensionMessageService() {
61 return original_profile_->GetExtensionMessageService(); 64 return original_profile_->GetExtensionMessageService();
62 } 65 }
63 virtual SSLHostState* GetSSLHostState() { 66 virtual SSLHostState* GetSSLHostState() {
64 return original_profile_->GetSSLHostState(); 67 return original_profile_->GetSSLHostState();
65 } 68 }
66 virtual net::ForceTLSState* GetForceTLSState() { 69 virtual net::ForceTLSState* GetForceTLSState() {
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 Profile* original_profile_; 198 Profile* original_profile_;
196 scoped_ptr<net::CookieStore> alternate_cookie_store_; 199 scoped_ptr<net::CookieStore> alternate_cookie_store_;
197 scoped_refptr<URLRequestContext> alternate_reqeust_context_; 200 scoped_refptr<URLRequestContext> alternate_reqeust_context_;
198 int tab_handle_; 201 int tab_handle_;
199 202
200 private: 203 private:
201 DISALLOW_COPY_AND_ASSIGN(AutomationProfileImpl); 204 DISALLOW_COPY_AND_ASSIGN(AutomationProfileImpl);
202 }; 205 };
203 206
204 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROFILE_IMPL_H_ 207 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROFILE_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_devtools_bridge.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698