Home | History | Annotate | Download | only in base

Lines Matching defs:TestingBrowserProcess

49 TestingBrowserProcess* TestingBrowserProcess::GetGlobal() {
50 return static_cast<TestingBrowserProcess*>(g_browser_process);
54 void TestingBrowserProcess::CreateInstance() {
56 g_browser_process = new TestingBrowserProcess;
60 void TestingBrowserProcess::DeleteInstance() {
67 TestingBrowserProcess::TestingBrowserProcess()
83 TestingBrowserProcess::~TestingBrowserProcess() {
90 // Destructors for some objects owned by TestingBrowserProcess will use
95 void TestingBrowserProcess::ResourceDispatcherHostCreated() {
98 void TestingBrowserProcess::EndSession() {
101 MetricsServicesManager* TestingBrowserProcess::GetMetricsServicesManager() {
105 MetricsService* TestingBrowserProcess::metrics_service() {
109 rappor::RapporService* TestingBrowserProcess::rappor_service() {
113 IOThread* TestingBrowserProcess::io_thread() {
117 WatchDogThread* TestingBrowserProcess::watchdog_thread() {
121 ProfileManager* TestingBrowserProcess::profile_manager() {
130 void TestingBrowserProcess::SetProfileManager(ProfileManager* profile_manager) {
143 PrefService* TestingBrowserProcess::local_state() {
148 TestingBrowserProcess::variations_service() {
153 TestingBrowserProcess::browser_policy_connector() {
163 policy::PolicyService* TestingBrowserProcess::policy_service() {
176 IconManager* TestingBrowserProcess::icon_manager() {
180 GLStringManager* TestingBrowserProcess::gl_string_manager() {
184 GpuModeManager* TestingBrowserProcess::gpu_mode_manager() {
188 BackgroundModeManager* TestingBrowserProcess::background_mode_manager() {
192 void TestingBrowserProcess::set_background_mode_manager_for_test(
197 StatusTray* TestingBrowserProcess::status_tray() {
201 SafeBrowsingService* TestingBrowserProcess::safe_browsing_service() {
211 TestingBrowserProcess::safe_browsing_detection_service() {
215 net::URLRequestContextGetter* TestingBrowserProcess::system_request_context() {
219 BrowserProcessPlatformPart* TestingBrowserProcess::platform_part() {
224 TestingBrowserProcess::extension_event_router_forwarder() {
228 NotificationUIManager* TestingBrowserProcess::notification_ui_manager() {
240 message_center::MessageCenter* TestingBrowserProcess::message_center() {
244 IntranetRedirectDetector* TestingBrowserProcess::intranet_redirect_detector() {
247 void TestingBrowserProcess::CreateDevToolsHttpProtocolHandler(
253 unsigned int TestingBrowserProcess::AddRefModule() {
257 unsigned int TestingBrowserProcess::ReleaseModule() {
262 bool TestingBrowserProcess::IsShuttingDown() {
266 printing::PrintJobManager* TestingBrowserProcess::print_job_manager() {
278 TestingBrowserProcess::print_preview_dialog_controller() {
291 TestingBrowserProcess::background_printing_manager() {
304 const std::string& TestingBrowserProcess::GetApplicationLocale() {
308 void TestingBrowserProcess::SetApplicationLocale(
313 DownloadStatusUpdater* TestingBrowserProcess::download_status_updater() {
317 DownloadRequestLimiter* TestingBrowserProcess::download_request_limiter() {
321 ChromeNetLog* TestingBrowserProcess::net_log() {
325 prerender::PrerenderTracker* TestingBrowserProcess::prerender_tracker() {
337 TestingBrowserProcess::component_updater() {
341 CRLSetFetcher* TestingBrowserProcess::crl_set_fetcher() {
346 TestingBrowserProcess::pnacl_component_installer() {
350 MediaFileSystemRegistry* TestingBrowserProcess::media_file_system_registry() {
361 bool TestingBrowserProcess::created_local_state() const {
366 WebRtcLogUploader* TestingBrowserProcess::webrtc_log_uploader() {
372 TestingBrowserProcess::network_time_tracker() {
382 gcm::GCMDriver* TestingBrowserProcess::gcm_driver() {
386 void TestingBrowserProcess::SetSystemRequestContext(
391 void TestingBrowserProcess::SetLocalState(PrefService* local_state) {
393 // The local_state_ PrefService is owned outside of TestingBrowserProcess,
394 // but some of the members of TestingBrowserProcess hold references to it
397 // TestingBrowserProcess, there's not a good way to make local_state outlive
399 // (assumedly as part of exiting the test and freeing TestingBrowserProcess)
400 // any components owned by TestingBrowserProcess that depend on local_state
413 void TestingBrowserProcess::SetIOThread(IOThread* io_thread) {
417 void TestingBrowserProcess::SetBrowserPolicyConnector(
429 void TestingBrowserProcess::SetSafeBrowsingService(
440 TestingBrowserProcess::CreateInstance();
444 TestingBrowserProcess::DeleteInstance();