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

Side by Side Diff: chrome/browser/browser_process.h

Issue 13071002: Turn on component updater on chromeos, only for the pnacl component. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: filepath Created 7 years, 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // This interface is for managing the global services of the application. Each 5 // This interface is for managing the global services of the application. Each
6 // service is lazily created when requested the first time. The service getters 6 // service is lazily created when requested the first time. The service getters
7 // will return NULL if the service is not available, so callers must check for 7 // will return NULL if the service is not available, so callers must check for
8 // this condition. 8 // this condition.
9 9
10 #ifndef CHROME_BROWSER_BROWSER_PROCESS_H_ 10 #ifndef CHROME_BROWSER_BROWSER_PROCESS_H_
(...skipping 13 matching lines...) Expand all
24 class ComponentUpdateService; 24 class ComponentUpdateService;
25 class DownloadRequestLimiter; 25 class DownloadRequestLimiter;
26 class DownloadStatusUpdater; 26 class DownloadStatusUpdater;
27 class GLStringManager; 27 class GLStringManager;
28 class GpuModeManager; 28 class GpuModeManager;
29 class IconManager; 29 class IconManager;
30 class IntranetRedirectDetector; 30 class IntranetRedirectDetector;
31 class IOThread; 31 class IOThread;
32 class MetricsService; 32 class MetricsService;
33 class NotificationUIManager; 33 class NotificationUIManager;
34 class PnaclComponentInstaller;
34 class PrefRegistrySimple; 35 class PrefRegistrySimple;
35 class PrefService; 36 class PrefService;
36 class Profile; 37 class Profile;
37 class ProfileManager; 38 class ProfileManager;
38 class RenderWidgetSnapshotTaker; 39 class RenderWidgetSnapshotTaker;
39 class SafeBrowsingService; 40 class SafeBrowsingService;
40 class StatusTray; 41 class StatusTray;
41 class WatchDogThread; 42 class WatchDogThread;
42 43
43 namespace chrome { 44 namespace chrome {
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 #endif 212 #endif
212 213
213 virtual ChromeNetLog* net_log() = 0; 214 virtual ChromeNetLog* net_log() = 0;
214 215
215 virtual prerender::PrerenderTracker* prerender_tracker() = 0; 216 virtual prerender::PrerenderTracker* prerender_tracker() = 0;
216 217
217 virtual ComponentUpdateService* component_updater() = 0; 218 virtual ComponentUpdateService* component_updater() = 0;
218 219
219 virtual CRLSetFetcher* crl_set_fetcher() = 0; 220 virtual CRLSetFetcher* crl_set_fetcher() = 0;
220 221
222 virtual PnaclComponentInstaller* pnacl_component_installer() = 0;
cpu_(ooo_6.6-7.5) 2013/03/29 22:24:39 why do we need this member now here?
jvoung (off chromium) 2013/03/29 22:54:52 I wanted to have a single instance of the installe
223
221 virtual BookmarkPromptController* bookmark_prompt_controller() = 0; 224 virtual BookmarkPromptController* bookmark_prompt_controller() = 0;
222 225
223 virtual chrome::MediaFileSystemRegistry* media_file_system_registry() = 0; 226 virtual chrome::MediaFileSystemRegistry* media_file_system_registry() = 0;
224 227
225 virtual void PlatformSpecificCommandLineProcessing( 228 virtual void PlatformSpecificCommandLineProcessing(
226 const CommandLine& command_line) = 0; 229 const CommandLine& command_line) = 0;
227 230
228 private: 231 private:
229 DISALLOW_COPY_AND_ASSIGN(BrowserProcess); 232 DISALLOW_COPY_AND_ASSIGN(BrowserProcess);
230 }; 233 };
231 234
232 extern BrowserProcess* g_browser_process; 235 extern BrowserProcess* g_browser_process;
233 236
234 #endif // CHROME_BROWSER_BROWSER_PROCESS_H_ 237 #endif // CHROME_BROWSER_BROWSER_PROCESS_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/browser_process_impl.h » ('j') | chrome/browser/browser_process_impl.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698