Expose ChildProcessData for the utility process

This is useful if you need to dup a single file
into it instead of opening an entire directory.

Safebrowsing can use this so the utility process
can operate directly in the downloads folder.

BUG=165030
TEST=none
Review URL: https://codereview.chromium.org/11573070

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@173834 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/content/browser/utility_process_host_impl.h b/content/browser/utility_process_host_impl.h
index 7baccd6b..76c85d5 100644
--- a/content/browser/utility_process_host_impl.h
+++ b/content/browser/utility_process_host_impl.h
@@ -37,6 +37,7 @@
   virtual void SetExposedDir(const FilePath& dir) OVERRIDE;
   virtual void DisableSandbox() OVERRIDE;
   virtual void EnableZygote() OVERRIDE;
+  virtual const ChildProcessData& GetData() OVERRIDE;
 #if defined(OS_POSIX)
   virtual void SetEnv(const base::EnvironmentVector& env) OVERRIDE;
 #endif