HomeSort by relevance Sort by last modified time
    Searched refs:ChildProcessHost (Results 1 - 21 of 21) sorted by null

  /external/chromium_org/content/public/common/
child_process_host.h 23 class CONTENT_EXPORT ChildProcessHost : public IPC::Sender {
25 virtual ~ChildProcessHost() {}
28 static ChildProcessHost* Create(
  /external/chromium_org/content/public/browser/
browser_child_process_host.h 27 class ChildProcessHost;
57 // Returns the ChildProcessHost object used by this object.
58 virtual ChildProcessHost* GetHost() const = 0;
  /external/chromium_org/content/common/
child_process_host_impl.h 35 class CONTENT_EXPORT ChildProcessHostImpl : public ChildProcessHost,
58 // ChildProcessHost implementation
69 friend class ChildProcessHost;
child_process_host_impl.cc 84 ChildProcessHost* ChildProcessHost::Create(ChildProcessHostDelegate* delegate) {
89 base::FilePath ChildProcessHost::GetChildPath(int flags) {
  /external/chromium_org/content/browser/
utility_process_host_impl.cc 77 child_flags_(ChildProcessHost::CHILD_ALLOW_SELF),
79 child_flags_(ChildProcessHost::CHILD_NORMAL),
168 // |switches::kUtilityCmdPrefix|. See ChildProcessHost::GetChildPath() for
171 child_flags = ChildProcessHost::CHILD_NORMAL;
174 base::FilePath exe_path = ChildProcessHost::GetChildPath(child_flags);
browser_child_process_host_impl.h 54 virtual ChildProcessHost* GetHost() const OVERRIDE;
64 // Removes this host from the host list. Calls ChildProcessHost::ForceShutdown
109 scoped_ptr<ChildProcessHost> child_process_host_;
plugin_process_host.cc 170 int flags = ChildProcessHost::CHILD_ALLOW_HEAP_EXECUTION;
172 int flags = plugin_launcher.empty() ? ChildProcessHost::CHILD_ALLOW_SELF :
173 ChildProcessHost::CHILD_NORMAL;
175 int flags = ChildProcessHost::CHILD_NORMAL;
178 base::FilePath exe_path = ChildProcessHost::GetChildPath(flags);
ppapi_plugin_process_host.cc 267 int flags = plugin_launcher.empty() ? ChildProcessHost::CHILD_ALLOW_SELF :
268 ChildProcessHost::CHILD_NORMAL;
270 int flags = ChildProcessHost::CHILD_NORMAL;
272 base::FilePath exe_path = ChildProcessHost::GetChildPath(flags);
plugin_loader_posix.cc 112 host->set_child_flags(ChildProcessHost::CHILD_ALLOW_HEAP_EXECUTION);
browser_child_process_host_impl.cc 102 child_process_host_.reset(ChildProcessHost::Create(this));
181 ChildProcessHost* BrowserChildProcessHostImpl::GetHost() const {
  /external/chromium_org/chrome/service/
service_utility_process_host.h 30 class ChildProcessHost;
140 scoped_ptr<content::ChildProcessHost> child_process_host_;
service_utility_process_host.cc 60 using content::ChildProcessHost;
82 child_process_host_.reset(ChildProcessHost::Create(this));
205 int flags = ChildProcessHost::CHILD_ALLOW_SELF;
207 int flags = ChildProcessHost::CHILD_NORMAL;
209 return ChildProcessHost::GetChildPath(flags);
  /external/chromium_org/chrome/browser/service_process/
service_process_control.cc 31 using content::ChildProcessHost;
124 int flags = ChildProcessHost::CHILD_ALLOW_SELF;
126 int flags = ChildProcessHost::CHILD_NORMAL;
129 base::FilePath exe_path = ChildProcessHost::GetChildPath(flags);
  /external/chromium_org/components/nacl/browser/
nacl_process_host.cc 70 using content::ChildProcessHost;
503 int flags = ChildProcessHost::CHILD_NO_PIE;
505 int flags = nacl_loader_prefix.empty() ? ChildProcessHost::CHILD_ALLOW_SELF :
506 ChildProcessHost::CHILD_NORMAL;
508 int flags = ChildProcessHost::CHILD_NORMAL;
511 base::FilePath exe_path = ChildProcessHost::GetChildPath(flags);
    [all...]
  /external/chromium_org/content/browser/worker_host/
worker_process_host.cc 132 int flags = ChildProcessHost::CHILD_ALLOW_SELF;
134 int flags = ChildProcessHost::CHILD_NORMAL;
137 base::FilePath exe_path = ChildProcessHost::GetChildPath(flags);
  /external/chromium/chrome/common/
service_process_util.cc 260 FilePath exe_path = ChildProcessHost::GetChildPath(false);
  /external/chromium_org/content/browser/gpu/
gpu_process_host.cc     [all...]
  /external/chromium/chrome/browser/service/
service_process_control.cc 125 FilePath exe_path = ChildProcessHost::GetChildPath(true);
  /external/chromium_org/content/browser/renderer_host/
render_process_host_impl.cc 477 int flags = renderer_prefix.empty() ? ChildProcessHost::CHILD_ALLOW_SELF :
478 ChildProcessHost::CHILD_NORMAL;
480 int flags = ChildProcessHost::CHILD_NORMAL;
485 base::FilePath renderer_path = ChildProcessHost::GetChildPath(flags);
    [all...]
  /external/chromium_org/chrome/browser/automation/
testing_automation_provider.cc 171 using content::ChildProcessHost;
    [all...]
  /external/chromium/chrome/browser/automation/
testing_automation_provider.cc     [all...]

Completed in 1345 milliseconds