HomeSort by relevance Sort by last modified time
    Searched defs:rph (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/content/browser/service_worker/
service_worker_process_manager.cc 16 RenderProcessHost* rph = RenderProcessHost::FromID(process_id); local
17 if (!rph || rph->FastShutdownStarted())
20 static_cast<RenderProcessHostImpl*>(rph)->IncrementWorkerRefCount();
57 RenderProcessHost* rph = RenderProcessHost::FromID(it->second.process_id); local
58 DCHECK(rph);
59 static_cast<RenderProcessHostImpl*>(rph)->DecrementWorkerRefCount();
120 RenderProcessHost* rph = site_instance->GetProcess(); local
121 // This Init() call posts a task to the IO thread that adds the RPH's
124 if (!rph->Init())
166 RenderProcessHost* rph = NULL; local
    [all...]
  /external/chromium_org/chrome/browser/ui/
browser_instant_controller.cc 158 content::RenderProcessHost* rph = contents->GetRenderProcessHost(); local
159 instant_service->SendSearchURLsToRenderer(rph);
163 if (!instant_service->IsInstantProcess(rph->GetID()))
  /external/chromium_org/components/navigation_interception/
intercept_navigation_resource_throttle.cc 39 RenderProcessHost* rph = RenderProcessHost::FromID(render_process_id); local
40 if (rph) {
42 rph->FilterURL(false, &validated_params.url());
  /external/chromium_org/content/browser/media/capture/
web_contents_tracker.cc 51 RenderProcessHost* const rph = rvh ? rvh->GetProcess() : NULL; local
53 const int render_process_id = rph ? rph->GetID() : MSG_ROUTING_NONE;
  /external/chromium_org/content/browser/renderer_host/
render_process_host_browsertest.cc 64 RenderProcessHost* rph = local
69 rph->AddObserver(this);
71 rph->OnMessageReceived(msg);
73 // If the RPH sends a mistaken ChildProcessMsg_Shutdown, the renderer process
80 rph->RemoveObserver(this);
92 RenderProcessHost* rph = local
95 reinterpret_cast<RenderProcessHostImpl*>(rph)->
169 RenderProcessHost* rph = local
174 rph->AddObserver(&shell_closer);
175 rph->AddObserver(&observer_logger)
    [all...]
  /external/chromium_org/chrome/browser/printing/
print_view_manager.cc 141 content::RenderProcessHost* rph = web_contents()->GetRenderProcessHost(); local
144 if (map.count(rph) != 0) {
169 map[rph] = callback;
170 scripted_print_preview_rph_ = rph;
  /external/chromium_org/components/breakpad/browser/
crash_dump_manager_android.cc 140 content::RenderProcessHost* rph = local
142 OnChildExit(rph->GetID(), rph->GetHandle());
  /external/chromium_org/chrome/browser/speech/
chrome_speech_recognition_manager_delegate.cc 386 content::RenderProcessHost* rph = local
388 if (!rph) // Guard against race conditions on RPH lifetime.
391 return Profile::FromBrowserContext(rph->GetBrowserContext())->GetPrefs()->
  /external/chromium_org/content/browser/devtools/
embedded_worker_devtools_manager.cc 304 RenderProcessHost* rph = RenderProcessHost::FromID(worker_process_id); local
307 DevToolsManagerImpl::GetInstance()->Inspect(rph->GetBrowserContext(),
  /external/chromium_org/content/browser/
site_per_process_browsertest.cc 252 RenderProcessHost* rph = child->current_frame_host()->GetProcess(); local
255 EXPECT_NE(shell()->web_contents()->GetRenderProcessHost(), rph);
293 EXPECT_NE(rph, child->current_frame_host()->GetProcess());
  /external/chromium_org/chrome/browser/extensions/api/processes/
processes_api.cc 107 content::RenderProcessHost* rph = local
109 if (rph == NULL)
445 content::RenderProcessHost* rph,
452 args->Append(new base::FundamentalValue(rph->GetID()));
  /external/chromium_org/chrome/browser/profiles/
off_the_record_profile_impl.cc 302 content::RenderProcessHost* rph = content::RenderProcessHost::FromID( local
304 return rph->GetStoragePartition()->GetURLRequestContext();
profile_impl.cc 943 content::RenderProcessHost* rph = content::RenderProcessHost::FromID( local
957 content::RenderProcessHost* rph = content::RenderProcessHost::FromID( local
    [all...]
  /external/chromium_org/chrome/browser/media_galleries/
media_file_system_registry.cc 117 void OnRenderProcessHostDestroyed(RenderProcessHost* rph);
139 RenderProcessHost* rph = contents->GetRenderProcessHost(); local
141 if (!ContainsKey(observer_map_, rph)) {
142 state = new RPHObserver(this, rph);
143 observer_map_[rph] = state;
145 state = observer_map_[rph];
209 RenderProcessHost* rph) {
210 RPHObserverMap::iterator rph_info = observer_map_.find(rph);
211 // This could be a potential problem if the RPH is navigated to a page on the
226 RenderProcessHost* rph = contents->GetRenderProcessHost() local
    [all...]
  /external/chromium_org/content/public/test/
browser_test_utils.cc 217 RenderProcessHost* rph = web_contents->GetRenderProcessHost(); local
219 rph, RenderProcessHostWatcher::WATCH_FOR_PROCESS_EXIT);
220 base::KillProcess(rph->GetHandle(), 0, false);
  /external/chromium_org/chrome/test/base/
testing_profile.cc 748 content::RenderProcessHost* rph = content::RenderProcessHost::FromID( local
750 return rph->GetStoragePartition()->GetURLRequestContext();
    [all...]

Completed in 526 milliseconds