OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // When each service is created, we set a flag indicating this. At this point, | 5 // When each service is created, we set a flag indicating this. At this point, |
6 // the service initialization could fail or succeed. This allows us to remember | 6 // the service initialization could fail or succeed. This allows us to remember |
7 // if we tried to create a service, and not try creating it over and over if | 7 // if we tried to create a service, and not try creating it over and over if |
8 // the creation failed. | 8 // the creation failed. |
9 | 9 |
10 #ifndef CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ | 10 #ifndef CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 virtual DownloadStatusUpdater* download_status_updater(); | 97 virtual DownloadStatusUpdater* download_status_updater(); |
98 virtual TabCloseableStateWatcher* tab_closeable_state_watcher(); | 98 virtual TabCloseableStateWatcher* tab_closeable_state_watcher(); |
99 virtual BackgroundModeManager* background_mode_manager(); | 99 virtual BackgroundModeManager* background_mode_manager(); |
100 virtual StatusTray* status_tray(); | 100 virtual StatusTray* status_tray(); |
101 virtual SafeBrowsingService* safe_browsing_service(); | 101 virtual SafeBrowsingService* safe_browsing_service(); |
102 virtual safe_browsing::ClientSideDetectionService* | 102 virtual safe_browsing::ClientSideDetectionService* |
103 safe_browsing_detection_service(); | 103 safe_browsing_detection_service(); |
104 virtual bool plugin_finder_disabled() const; | 104 virtual bool plugin_finder_disabled() const; |
105 | 105 |
106 // NotificationObserver methods | 106 // NotificationObserver methods |
107 virtual void Observe(NotificationType type, | 107 virtual void Observe(int type, |
108 const NotificationSource& source, | 108 const NotificationSource& source, |
109 const NotificationDetails& details); | 109 const NotificationDetails& details); |
110 | 110 |
111 #if (defined(OS_WIN) || defined(OS_LINUX)) && !defined(OS_CHROMEOS) | 111 #if (defined(OS_WIN) || defined(OS_LINUX)) && !defined(OS_CHROMEOS) |
112 virtual void StartAutoupdateTimer(); | 112 virtual void StartAutoupdateTimer(); |
113 #endif | 113 #endif |
114 | 114 |
115 virtual ChromeNetLog* net_log(); | 115 virtual ChromeNetLog* net_log(); |
116 | 116 |
117 virtual prerender::PrerenderTracker* prerender_tracker(); | 117 virtual prerender::PrerenderTracker* prerender_tracker(); |
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
311 | 311 |
312 #if defined(OS_CHROMEOS) | 312 #if defined(OS_CHROMEOS) |
313 scoped_refptr<chromeos::ProxyConfigServiceImpl> | 313 scoped_refptr<chromeos::ProxyConfigServiceImpl> |
314 chromeos_proxy_config_service_impl_; | 314 chromeos_proxy_config_service_impl_; |
315 #endif | 315 #endif |
316 | 316 |
317 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); | 317 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); |
318 }; | 318 }; |
319 | 319 |
320 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ | 320 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ |
OLD | NEW |