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

Side by Side Diff: chrome/test/testing_profile.h

Issue 155707: Changed the extension.connect() API not to broadcast to all tabs. Added a (Closed)
Patch Set: review comments Created 11 years, 5 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 | « chrome/renderer/resources/extension_process_bindings.js ('k') | no next file » | 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-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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_TEST_TESTING_PROFILE_H_ 5 #ifndef CHROME_TEST_TESTING_PROFILE_H_
6 #define CHROME_TEST_TESTING_PROFILE_H_ 6 #define CHROME_TEST_TESTING_PROFILE_H_
7 7
8 #include "base/base_paths.h" 8 #include "base/base_paths.h"
9 #include "base/file_path.h" 9 #include "base/file_path.h"
10 #include "base/path_service.h" 10 #include "base/path_service.h"
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 } 80 }
81 virtual ExtensionsService* GetExtensionsService() { 81 virtual ExtensionsService* GetExtensionsService() {
82 return NULL; 82 return NULL;
83 } 83 }
84 virtual UserScriptMaster* GetUserScriptMaster() { 84 virtual UserScriptMaster* GetUserScriptMaster() {
85 return NULL; 85 return NULL;
86 } 86 }
87 virtual ExtensionProcessManager* GetExtensionProcessManager() { 87 virtual ExtensionProcessManager* GetExtensionProcessManager() {
88 return NULL; 88 return NULL;
89 } 89 }
90 virtual ExtensionMessageService* GetExtensionMessageService() {
91 return NULL;
92 }
90 virtual SSLHostState* GetSSLHostState() { 93 virtual SSLHostState* GetSSLHostState() {
91 return NULL; 94 return NULL;
92 } 95 }
93 virtual net::ForceTLSState* GetForceTLSState() { 96 virtual net::ForceTLSState* GetForceTLSState() {
94 return NULL; 97 return NULL;
95 } 98 }
96 virtual HistoryService* GetHistoryService(ServiceAccessType access) { 99 virtual HistoryService* GetHistoryService(ServiceAccessType access) {
97 return history_service_.get(); 100 return history_service_.get();
98 } 101 }
99 void set_has_history_service(bool has_history_service) { 102 void set_has_history_service(bool has_history_service) {
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 265
263 std::wstring id_; 266 std::wstring id_;
264 267
265 bool off_the_record_; 268 bool off_the_record_;
266 269
267 // Did the last session exit cleanly? Default is true. 270 // Did the last session exit cleanly? Default is true.
268 bool last_session_exited_cleanly_; 271 bool last_session_exited_cleanly_;
269 }; 272 };
270 273
271 #endif // CHROME_TEST_TESTING_PROFILE_H_ 274 #endif // CHROME_TEST_TESTING_PROFILE_H_
OLDNEW
« no previous file with comments | « chrome/renderer/resources/extension_process_bindings.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698