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

Unified Diff: chrome/browser/browser_process_impl.h

Issue 387003008: ifdef extensions code in BrowserProcess, IOThread, and ChromeNetworkDelegate. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/browser_process_impl.cc » ('j') | chrome/browser/browser_process_impl.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browser_process_impl.h
diff --git a/chrome/browser/browser_process_impl.h b/chrome/browser/browser_process_impl.h
index 7f5de8fdc6077c688ae21e3ca729614a42c6dad4..679bda43dd7bd4a4ccda957716e8ebc977a9fe07 100644
--- a/chrome/browser/browser_process_impl.h
+++ b/chrome/browser/browser_process_impl.h
@@ -195,21 +195,25 @@ class BrowserProcessImpl : public BrowserProcess,
scoped_ptr<GpuModeManager> gpu_mode_manager_;
scoped_ptr<extensions::ExtensionsBrowserClient> extensions_browser_client_;
Ryan Sleevi 2014/07/16 20:23:43 Why doesn't this have to be #ifdef'd? It's in the
Lei Zhang 2014/07/18 01:34:24 Too many pieces depend on the ExtensionsBrowserCli
+#if defined(ENABLE_EXTENSIONS)
scoped_refptr<extensions::EventRouterForwarder>
extension_event_router_forwarder_;
+#endif
#if !defined(OS_ANDROID)
scoped_ptr<RemoteDebuggingServer> remote_debugging_server_;
#endif
-#if !defined(OS_ANDROID) && !defined(OS_IOS)
+#if defined(ENABLE_EXTENSIONS)
scoped_ptr<MediaFileSystemRegistry> media_file_system_registry_;
#endif
+#if defined(ENABLE_FULL_PRINTING)
scoped_refptr<printing::PrintPreviewDialogController>
print_preview_dialog_controller_;
scoped_ptr<printing::BackgroundPrintingManager> background_printing_manager_;
+#endif
Ryan Sleevi 2014/07/16 20:23:43 I'm assuming the order of shutdown is particularly
Lei Zhang 2014/07/18 01:34:24 The printing bits are separate from the extensions
// Manager for desktop notification UI.
bool created_notification_ui_manager_;
« no previous file with comments | « no previous file | chrome/browser/browser_process_impl.cc » ('j') | chrome/browser/browser_process_impl.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698