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

Unified Diff: content/shell/shell_browser_main_parts.cc

Issue 15777006: Moar build fix for enable_plugins=0 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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 | « content/shell/shell_browser_main_parts.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/shell_browser_main_parts.cc
diff --git a/content/shell/shell_browser_main_parts.cc b/content/shell/shell_browser_main_parts.cc
index 954ce24c94926982b35ca7588824fce3b31ffac0..3c47011d942f70a4c9a7e69690b5f2a31d10864e 100644
--- a/content/shell/shell_browser_main_parts.cc
+++ b/content/shell/shell_browser_main_parts.cc
@@ -80,8 +80,12 @@ ShellBrowserMainParts::ShellBrowserMainParts(
: BrowserMainParts(),
parameters_(parameters),
run_message_loop_(true),
- devtools_delegate_(NULL),
- plugin_service_filter_(NULL) {
+ devtools_delegate_(NULL)
+#if defined(ENABLE_PLUGINS)
+ ,
+ plugin_service_filter_(NULL)
+#endif
+{
}
ShellBrowserMainParts::~ShellBrowserMainParts() {
« no previous file with comments | « content/shell/shell_browser_main_parts.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698