diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-19 04:52:06 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-19 04:52:06 +0000 |
commit | 84b7a55e7c59e49cdcfdba541b955216bd064347 (patch) | |
tree | 98f71f0c9718106073e168a53144524e3d7b8369 /chrome/browser/browser_process_impl.h | |
parent | 5e034244b31e9b0cf30768d026d42a54e5822a4d (diff) | |
download | chromium_src-84b7a55e7c59e49cdcfdba541b955216bd064347.zip chromium_src-84b7a55e7c59e49cdcfdba541b955216bd064347.tar.gz chromium_src-84b7a55e7c59e49cdcfdba541b955216bd064347.tar.bz2 |
ifdef extensions code in BrowserProcess, IOThread, and ChromeNetworkDelegate.
BUG=349436
Review URL: https://codereview.chromium.org/387003008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@284312 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_process_impl.h')
-rw-r--r-- | chrome/browser/browser_process_impl.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/chrome/browser/browser_process_impl.h b/chrome/browser/browser_process_impl.h index 7f5de8f..3e5c496 100644 --- a/chrome/browser/browser_process_impl.h +++ b/chrome/browser/browser_process_impl.h @@ -195,21 +195,24 @@ class BrowserProcessImpl : public BrowserProcess, scoped_ptr<GpuModeManager> gpu_mode_manager_; scoped_ptr<extensions::ExtensionsBrowserClient> extensions_browser_client_; + +#if defined(ENABLE_EXTENSIONS) scoped_refptr<extensions::EventRouterForwarder> extension_event_router_forwarder_; -#if !defined(OS_ANDROID) - scoped_ptr<RemoteDebuggingServer> remote_debugging_server_; + scoped_ptr<MediaFileSystemRegistry> media_file_system_registry_; #endif -#if !defined(OS_ANDROID) && !defined(OS_IOS) - scoped_ptr<MediaFileSystemRegistry> media_file_system_registry_; +#if !defined(OS_ANDROID) + scoped_ptr<RemoteDebuggingServer> remote_debugging_server_; #endif +#if defined(ENABLE_FULL_PRINTING) scoped_refptr<printing::PrintPreviewDialogController> print_preview_dialog_controller_; scoped_ptr<printing::BackgroundPrintingManager> background_printing_manager_; +#endif // Manager for desktop notification UI. bool created_notification_ui_manager_; |