HomeSort by relevance Sort by last modified time
    Searched refs:rvh (Results 1 - 25 of 105) sorted by null

1 2 3 4 5

  /external/chromium_org/extensions/browser/app_window/
app_window_contents.cc 46 // RVH from loading anything until the background page has had a chance to
47 // do any initialization it wants. If it's a different process, the new RVH
70 content::RenderViewHost* rvh = web_contents_->GetRenderViewHost(); local
71 rvh->Send(new ExtensionMsg_MessageInvoke(rvh->GetRoutingID(),
80 content::RenderViewHost* rvh = web_contents_->GetRenderViewHost(); local
81 rvh->Send(new ExtensionMsg_AppWindowClosed(rvh->GetRoutingID()));
86 content::RenderViewHost* rvh = web_contents_->GetRenderViewHost(); local
87 rvh->Send(new ExtensionMsg_MessageInvoke(rvh->GetRoutingID()
    [all...]
app_web_contents_helper.cc 120 content::RenderViewHost* rvh = web_contents_->GetRenderViewHost(); local
121 rvh->Send(new ExtensionMsg_AddMessageToConsole(
122 rvh->GetRoutingID(), level, message));
app_window_contents.h 53 void SuspendRenderViewHost(content::RenderViewHost* rvh);
  /external/chromium_org/chrome/browser/nacl_host/
nacl_infobar_delegate.cc 19 content::RenderViewHost* rvh = local
21 if (!rvh)
24 content::WebContents::FromRenderViewHost(rvh);
  /external/chromium_org/content/public/test/
test_renderer_host.cc 57 bool RenderViewHostTester::IsRenderViewHostSwappedOut(RenderViewHost* rvh) {
58 return static_cast<RenderViewHostImpl*>(rvh)->rvh_state() ==
63 bool RenderViewHostTester::TestOnMessageReceived(RenderViewHost* rvh,
65 return static_cast<RenderViewHostImpl*>(rvh)->OnMessageReceived(msg);
69 bool RenderViewHostTester::HasTouchEventHandler(RenderViewHost* rvh) {
70 RenderWidgetHostImpl* host_impl = RenderWidgetHostImpl::From(rvh);
102 RenderViewHost* RenderViewHostTestHarness::rvh() { function in class:content::RenderViewHostTestHarness
113 return pending_rvh() ? pending_rvh() : rvh();
164 rvh())->SendNavigateWithTransition(
173 rvh())->SendFailedNavigate(entry->GetPageID(), entry->GetURL())
    [all...]
test_renderer_host.h 75 // If the given WebContentsImpl has a pending RVH, returns it, otherwise NULL.
84 static bool IsRenderViewHostSwappedOut(RenderViewHost* rvh);
88 static bool TestOnMessageReceived(RenderViewHost* rvh,
92 static bool HasTouchEventHandler(RenderViewHost* rvh);
162 // RVH/RFH getters are shorthand for oft-used bits of web_contents().
164 // rvh() is equivalent to either of:
167 RenderViewHost* rvh();
173 // active_rvh() is equivalent to pending_rvh() ? pending_rvh() : rvh()
  /external/chromium_org/content/browser/accessibility/
accessibility_ui.cc 66 base::DictionaryValue* BuildTargetDescriptor(RenderViewHost* rvh) {
68 WebContents::FromRenderViewHost(rvh));
88 rvh->GetProcess()->GetID(),
89 rvh->GetRoutingID(),
114 RenderViewHost* rvh = RenderViewHost::From(widget); local
115 rvh_list->Append(BuildTargetDescriptor(rvh));
179 RenderViewHost* rvh = RenderViewHost::FromID(process_id, route_id); local
180 if (!rvh)
183 WebContents::FromRenderViewHost(rvh));
214 RenderViewHost* rvh = RenderViewHost::FromID(process_id, route_id) local
    [all...]
  /external/chromium_org/chrome/browser/safe_browsing/
safe_browsing_tab_observer.cc 77 content::RenderViewHost* rvh = web_contents_->GetRenderViewHost(); local
78 rvh->Send(new ChromeViewMsg_SetClientSidePhishingDetection(
79 rvh->GetRoutingID(), safe_browsing));
  /external/chromium_org/content/browser/browser_plugin/
browser_plugin_message_filter.cc 57 RenderViewHost* rvh = RenderViewHost::FromID(render_process_id_, local
59 if (!rvh)
62 WebContents* embedder_web_contents = WebContents::FromRenderViewHost(rvh);
  /external/chromium_org/content/browser/download/
download_request_handle.cc 47 RenderViewHostImpl* rvh = RenderViewHostImpl::FromID( local
49 if (rvh == NULL)
51 RenderProcessHost* rph = rvh->GetProcess();
  /external/chromium_org/content/browser/renderer_host/
render_view_host_browsertest.cc 126 RenderViewHost* rvh = shell()->web_contents()->GetRenderViewHost(); local
127 EXPECT_FALSE(rvh->IsFocusedElementEditable());
129 EXPECT_TRUE(rvh->IsFocusedElementEditable());
144 RenderViewHost* rvh = new_shell->web_contents()->GetRenderViewHost(); local
145 SiteInstance* site_instance = rvh->GetSiteInstance();
147 rvh->GetDelegate()->GetSessionStorageNamespace(site_instance);
  /external/chromium_org/chrome/browser/renderer_context_menu/
spellchecker_submenu_observer_mac.cc 117 content::RenderViewHost* rvh = proxy_->GetRenderViewHost(); local
128 rvh->Send(new SpellCheckMsg_ToggleSpellPanel(
129 rvh->GetRoutingID(), spellcheck_mac::SpellingPanelVisible()));
  /external/chromium_org/chrome/browser/devtools/device/
port_forwarding_browsertest.cc 100 content::RenderViewHost* rvh = browser()->tab_strip_model()-> local
106 rvh,
113 rvh,
120 rvh,
  /external/chromium_org/chrome/browser/ui/
navigation_correction_tab_observer.h 49 void UpdateNavigationCorrectionInfo(content::RenderViewHost* rvh);
navigation_correction_tab_observer.cc 92 RenderViewHost* rvh) {
93 RenderFrameHost* rfh = rvh->GetMainFrame();
  /external/chromium_org/content/browser/devtools/
render_view_devtools_agent_host.cc 88 RenderViewHost* rvh = RenderViewHost::From(widget); local
89 WebContents* web_contents = WebContents::FromRenderViewHost(rvh);
110 RenderViewDevToolsAgentHost::RenderViewDevToolsAgentHost(RenderViewHost* rvh)
117 SetRenderViewHost(rvh);
234 RenderViewHost* rvh = (*it)->render_view_host_; local
235 if (rvh && rvh->GetProcess() == render_process_host)
277 RenderViewDevToolsAgentHost::ReattachToRenderViewHost(RenderViewHost* rvh) {
281 ConnectRenderViewHost(rvh);
285 void RenderViewDevToolsAgentHost::RenderViewDeleted(RenderViewHost* rvh) {
    [all...]
render_view_devtools_agent_host.h 72 virtual void RenderViewDeleted(RenderViewHost* rvh) OVERRIDE;
86 void ConnectRenderViewHost(RenderViewHost* rvh);
87 void ReattachToRenderViewHost(RenderViewHost* rvh);
91 void SetRenderViewHost(RenderViewHost* rvh);
  /external/chromium_org/chrome/browser/ui/fullscreen/
fullscreen_controller.cc 319 RenderViewHost* const rvh = web_contents->GetRenderViewHost(); local
320 if (rvh)
321 rvh->ExitFullscreen();
358 RenderViewHost* const rvh = active_web_contents->GetRenderViewHost(); local
359 if (rvh)
360 rvh->ExitFullscreen();
542 RenderViewHost* rvh = fullscreened_tab_->GetRenderViewHost(); local
546 if (rvh)
547 rvh->ExitFullscreen();
761 RenderViewHost* const rvh = mouse_lock_tab_->GetRenderViewHost() local
    [all...]
  /external/chromium_org/chrome/test/base/
tracing_browsertest.cc 34 content::RenderViewHost* rvh = browser()->tab_strip_model()-> local
36 ASSERT_TRUE(rvh);
37 ASSERT_TRUE(content::ExecuteScript(rvh, ";"));
chrome_render_view_host_test_harness.cc 36 return RenderViewHostTester::For(rvh());
  /external/chromium_org/chrome/browser/
chrome_content_browser_client_parts.h 45 virtual void OverrideWebkitPrefs(content::RenderViewHost* rvh,
  /external/chromium_org/chrome/browser/media_galleries/
media_file_system_registry.h 79 // given RVH.
81 const content::RenderViewHost* rvh,
88 const content::RenderViewHost* rvh,
  /external/chromium_org/chrome/browser/task_manager/
guest_information.cc 109 content::RenderViewHost* rvh = content::RenderViewHost::From(widget); local
110 WebContents* web_contents = WebContents::FromRenderViewHost(rvh);
  /external/chromium_org/content/browser/frame_host/
frame_tree.cc 188 // Create the swapped out RVH for the new SiteInstance. This will create
261 RenderViewHostImpl* rvh = static_cast<RenderViewHostImpl*>( local
270 render_view_host_map_[site_instance->GetId()] = rvh;
271 return rvh;
324 RenderViewHostImpl* rvh = multi_iter->second; local
327 CHECK_GT(rvh->ref_count(), 0);
328 rvh->decrement_ref_count();
329 if (rvh->ref_count() == 0) {
330 rvh->Shutdown();
frame_tree_browsertest.cc 109 RenderViewHost* rvh = shell()->web_contents()->GetRenderViewHost(); local
111 static_cast<RenderFrameHostImpl*>(rvh->GetMainFrame());
112 EXPECT_TRUE(rvh->IsRenderViewLive());
128 EXPECT_FALSE(rvh->IsRenderViewLive());
138 EXPECT_TRUE(rvh->IsRenderViewLive());
253 RenderViewHost* rvh = child->current_frame_host()->render_view_host(); local
256 EXPECT_NE(shell()->web_contents()->GetRenderViewHost(), rvh);

Completed in 635 milliseconds

1 2 3 4 5