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

Unified Diff: content/app/content_main.cc

Issue 8381029: Move ZygoteForkDelegateLinux to content/public/app. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: sync Created 9 years, 2 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 | « chrome/nacl/nacl_fork_delegate_linux.cc ('k') | content/browser/zygote_main_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/app/content_main.cc
===================================================================
--- content/app/content_main.cc (revision 107064)
+++ content/app/content_main.cc (working copy)
@@ -48,7 +48,7 @@
#include "content/common/chrome_descriptors.h"
#if !defined(OS_MACOSX)
-#include "content/common/zygote_fork_delegate_linux.h"
+#include "content/public/common/zygote_fork_delegate_linux.h"
#endif
#endif // OS_POSIX
@@ -68,7 +68,7 @@
extern int UtilityMain(const MainFunctionParams&);
#if defined(OS_POSIX) && !defined(OS_MACOSX)
extern int ZygoteMain(const MainFunctionParams&,
- ZygoteForkDelegate* forkdelegate);
+ content::ZygoteForkDelegate* forkdelegate);
#endif
namespace {
@@ -192,7 +192,7 @@
{ switches::kPpapiPluginProcess, PpapiPluginMain },
};
- scoped_ptr<ZygoteForkDelegate> zygote_fork_delegate;
+ scoped_ptr<content::ZygoteForkDelegate> zygote_fork_delegate;
if (delegate) zygote_fork_delegate.reset(delegate->ZygoteStarting());
// This function call can return multiple times, once per fork().
« no previous file with comments | « chrome/nacl/nacl_fork_delegate_linux.cc ('k') | content/browser/zygote_main_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698