Searched defs:web_frame (Results 1 - 25 of 30) sorted by relevance

12

/external/chromium_org/chrome/renderer/extensions/
H A Dchrome_v8_context.cc10 blink::WebFrame* web_frame,
16 web_frame,
9 ChromeV8Context(const v8::Handle<v8::Context>& v8_context, blink::WebFrame* web_frame, const Extension* extension, Feature::Context context_type, const Extension* effective_extension, Feature::Context effective_context_type) argument
/external/chromium_org/content/renderer/
H A Drender_frame_proxy.h81 static RenderFrameProxy* FromWebFrame(blink::WebFrame* web_frame);
94 blink::WebRemoteFrame* web_frame() { return web_frame_; } function in class:content::RenderFrameProxy
H A Dstats_collection_controller.cc24 blink::WebLocalFrame* web_frame = local
26 if (!web_frame)
29 blink::WebView* web_view = web_frame->view();
H A Drender_frame_proxy.cc48 blink::WebRemoteFrame* web_frame = blink::WebRemoteFrame::create(proxy.get()); local
49 proxy->Init(web_frame, frame_to_replace->render_view());
60 blink::WebRemoteFrame* web_frame = NULL; local
64 web_frame = blink::WebRemoteFrame::create(proxy.get());
65 render_view->webview()->setMainFrame(web_frame);
72 web_frame = parent->web_frame()->createRemoteChild("", proxy.get());
76 proxy->Init(web_frame, render_view);
89 RenderFrameProxy* RenderFrameProxy::FromWebFrame(blink::WebFrame* web_frame) { argument
90 FrameMap::iterator iter = g_frame_map.Get().find(web_frame);
126 Init(blink::WebRemoteFrame* web_frame, RenderViewImpl* render_view) argument
[all...]
H A Ddom_serializer_browsertest.cc258 WebFrame* web_frame = GetMainFrame(); local
260 ASSERT_TRUE(web_frame != NULL);
262 web_frame->loadData(data, "text/html", encoding_info, base_url);
274 WebFrame* web_frame = FindSubFrameByURL(GetWebView(), page_url); local
275 ASSERT_TRUE(web_frame != NULL);
283 bool result = WebPageSerializer::serialize(web_frame->toWebLocalFrame(),
295 WebFrame* web_frame = FindSubFrameByURL(GetWebView(), file_url); local
296 ASSERT_TRUE(web_frame != NULL);
297 WebDocument doc = web_frame->document();
306 web_frame
315 WebFrame* web_frame = FindSubFrameByURL(GetWebView(), file_url); local
367 WebFrame* web_frame = FindSubFrameByURL(GetWebView(), file_url); local
419 WebFrame* web_frame = FindSubFrameByURL(GetWebView(), file_url); local
485 WebFrame* web_frame = FindSubFrameByURL(GetWebView(), file_url); local
540 WebFrame* web_frame = FindSubFrameByURL(GetWebView(), file_url); local
576 WebFrame* web_frame = FindSubFrameByURL(GetWebView(), file_url); local
609 WebFrame* web_frame = FindSubFrameByURL(GetWebView(), file_url); local
702 WebFrame* web_frame = GetMainFrame(); local
755 WebFrame* web_frame = FindSubFrameByURL(GetWebView(), file_url); local
[all...]
H A Drender_view_browsertest.cc1595 WebLocalFrame* web_frame = GetMainFrame(); local
1607 view()->GetMainRenderFrame()->didFailProvisionalLoad(web_frame, error);
1609 EXPECT_FALSE(web_frame->isViewSourceModeEnabled());
1618 WebLocalFrame* web_frame = GetMainFrame(); local
1630 view()->GetMainRenderFrame()->didFailProvisionalLoad(web_frame, error);
1632 EXPECT_TRUE(web_frame->isViewSourceModeEnabled());
2204 WebLocalFrame* web_frame = GetMainFrame(); local
2216 view()->GetMainRenderFrame()->didFailProvisionalLoad(web_frame, error);
2219 base::UTF16ToASCII(web_frame->contentAsText(kMaxOutputCharacters)));
2234 WebLocalFrame* web_frame local
[all...]
/external/chromium_org/extensions/renderer/
H A Dscript_injection.h32 blink::WebLocalFrame* web_frame,
53 blink::WebLocalFrame* web_frame() const { return web_frame_; } function in class:extensions::ScriptInjection
H A Dscript_context.h61 blink::WebFrame* web_frame() const { return web_frame_; } function in class:extensions::ScriptContext
H A Dprogrammatic_script_injector.cc26 blink::WebFrame* web_frame)
28 url_(ScriptContext::GetDataSourceURLForFrame(web_frame)),
29 render_view_(content::RenderView::FromWebView(web_frame->view())),
24 ProgrammaticScriptInjector( const ExtensionMsg_ExecuteCode_Params& params, blink::WebFrame* web_frame) argument
H A Duser_script_set.cc63 blink::WebFrame* web_frame,
66 GURL document_url = GetDocumentUrlForFrame(web_frame);
75 web_frame,
153 blink::WebFrame* web_frame,
163 web_frame,
178 blink::WebFrame* web_frame,
185 if (web_frame->parent() && !script->match_all_frames())
189 web_frame, document_url, script->match_about_blank());
199 web_frame,
201 web_frame
61 GetInjections( ScopedVector<ScriptInjection>* injections, blink::WebFrame* web_frame, int tab_id, UserScript::RunLocation run_location) argument
151 GetDeclarativeScriptInjection( int script_id, blink::WebFrame* web_frame, int tab_id, UserScript::RunLocation run_location, const GURL& document_url, const Extension* extension) argument
176 GetInjectionForScript( UserScript* script, blink::WebFrame* web_frame, int tab_id, UserScript::RunLocation run_location, const GURL& document_url, const Extension* extension, bool is_declarative) argument
[all...]
H A Duser_script_set_manager.cc38 blink::WebFrame* web_frame,
49 web_frame,
68 blink::WebFrame* web_frame,
71 static_scripts_.GetInjections(injections, web_frame, tab_id, run_location);
75 it->second->GetInjections(injections, web_frame, tab_id, run_location);
36 GetInjectionForDeclarativeScript( int script_id, blink::WebFrame* web_frame, int tab_id, const GURL& url, const Extension* extension) argument
66 GetAllInjections( ScopedVector<ScriptInjection>* injections, blink::WebFrame* web_frame, int tab_id, UserScript::RunLocation run_location) argument
H A Dscript_context.cc59 blink::WebFrame* web_frame,
65 web_frame_(web_frame),
179 return web_frame() ? GetDataSourceURLForFrame(web_frame()) : GURL();
184 api, extension(), context_type(), GetDataSourceURLForFrame(web_frame()));
58 ScriptContext(const v8::Handle<v8::Context>& v8_context, blink::WebFrame* web_frame, const Extension* extension, Feature::Context context_type, const Extension* effective_extension, Feature::Context effective_context_type) argument
H A Dscript_injection.cc117 blink::WebLocalFrame* web_frame,
122 web_frame_(web_frame),
180 content::RenderView::FromWebView(web_frame()->top()->view());
115 ScriptInjection( scoped_ptr<ScriptInjector> injector, blink::WebLocalFrame* web_frame, const std::string& extension_id, UserScript::RunLocation run_location, int tab_id) argument
H A Dscript_injection_manager.cc245 if ((*iter)->web_frame() == frame)
288 if ((*iter)->web_frame() == frame &&
358 blink::WebFrame* web_frame,
369 web_frame->toWebLocalFrame(),
379 scripts_run_info.LogRun(web_frame, UserScript::BROWSER_DRIVEN);
405 scripts_run_info.LogRun(injection->web_frame(), UserScript::RUN_DEFERRED);
357 HandleExecuteDeclarativeScript( blink::WebFrame* web_frame, int tab_id, const ExtensionId& extension_id, int script_id, const GURL& url) argument
H A Duser_script_injector.cc126 blink::WebFrame* web_frame,
135 web_frame, web_frame->document().url(), script_->match_about_blank());
124 CanExecuteOnFrame( const Extension* extension, blink::WebFrame* web_frame, int tab_id, const GURL& top_url) const argument
/external/chromium_org/content/renderer/media/
H A Drenderer_webaudiodevice_impl.cc51 WebLocalFrame* const web_frame = WebLocalFrame::frameForCurrentContext(); local
52 WebView* const web_view = web_frame ? web_frame->view() : NULL;
54 web_frame ? RenderFrame::FromWebFrame(web_frame) : NULL;
/external/chromium_org/chrome/renderer/autofill/
H A Dautofill_renderer_browsertest.cc200 WebFrame* web_frame = GetMainFrame(); local
201 WebDocument document = web_frame->document();
H A Dform_autofill_browsertest.cc120 WebFrame* web_frame = GetMainFrame(); local
121 ASSERT_NE(static_cast<WebFrame*>(NULL), web_frame); local
125 form_cache.ExtractNewForms(*web_frame, &forms);
130 EXPECT_EQ(GURL(web_frame->document().url()), form.origin);
180 WebFrame* web_frame = GetMainFrame(); local
181 ASSERT_NE(static_cast<WebFrame*>(NULL), web_frame); local
185 form_cache.ExtractNewForms(*web_frame, &forms);
189 WebElement element = web_frame->document().getElementById("firstname");
201 EXPECT_EQ(GURL(web_frame->document().url()), form_data.origin);
947 WebFrame* web_frame local
948 ASSERT_NE(static_cast<WebFrame*>(NULL), web_frame); local
1011 WebFrame* web_frame = GetMainFrame(); local
1012 ASSERT_NE(static_cast<WebFrame*>(NULL), web_frame); local
1113 WebFrame* web_frame = GetMainFrame(); local
1114 ASSERT_NE(static_cast<WebFrame*>(NULL), web_frame); local
1129 WebFrame* web_frame = GetMainFrame(); local
1130 ASSERT_NE(static_cast<WebFrame*>(NULL), web_frame); local
1143 WebFrame* web_frame = GetMainFrame(); local
1144 ASSERT_NE(static_cast<WebFrame*>(NULL), web_frame); local
1163 WebFrame* web_frame = GetMainFrame(); local
1164 ASSERT_NE(static_cast<WebFrame*>(NULL), web_frame); local
1183 WebFrame* web_frame = GetMainFrame(); local
1184 ASSERT_NE(static_cast<WebFrame*>(NULL), web_frame); local
1212 WebFrame* web_frame = GetMainFrame(); local
1213 ASSERT_NE(static_cast<WebFrame*>(NULL), web_frame); local
1260 WebFrame* web_frame = GetMainFrame(); local
1261 ASSERT_NE(static_cast<WebFrame*>(NULL), web_frame); local
1354 WebFrame* web_frame = GetMainFrame(); local
1355 ASSERT_NE(static_cast<WebFrame*>(NULL), web_frame); local
2460 WebFrame* web_frame = GetMainFrame(); local
2461 ASSERT_NE(static_cast<WebFrame*>(NULL), web_frame); local
2560 WebFrame* web_frame = GetMainFrame(); local
2561 ASSERT_NE(static_cast<WebFrame*>(NULL), web_frame); local
2641 WebFrame* web_frame = GetMainFrame(); local
2642 ASSERT_NE(static_cast<WebFrame*>(NULL), web_frame); local
2731 WebFrame* web_frame = GetMainFrame(); local
2732 ASSERT_NE(static_cast<WebFrame*>(NULL), web_frame); local
2954 WebFrame* web_frame = GetMainFrame(); local
2955 ASSERT_NE(static_cast<WebFrame*>(NULL), web_frame); local
3069 WebFrame* web_frame = GetMainFrame(); local
3070 ASSERT_NE(static_cast<WebFrame*>(NULL), web_frame); local
3182 WebFrame* web_frame = GetMainFrame(); local
3183 ASSERT_NE(static_cast<WebFrame*>(NULL), web_frame); local
3259 WebFrame* web_frame = GetMainFrame(); local
3260 ASSERT_NE(static_cast<WebFrame*>(NULL), web_frame); local
3327 WebFrame* web_frame = GetMainFrame(); local
3328 ASSERT_NE(static_cast<WebFrame*>(NULL), web_frame); local
3395 WebFrame* web_frame = GetMainFrame(); local
3396 ASSERT_NE(static_cast<WebFrame*>(NULL), web_frame); local
3464 WebFrame* web_frame = GetMainFrame(); local
3465 ASSERT_NE(static_cast<WebFrame*>(NULL), web_frame); local
3514 WebFrame* web_frame = GetMainFrame(); local
3515 ASSERT_NE(static_cast<WebFrame*>(NULL), web_frame); local
[all...]
/external/chromium_org/content/renderer/p2p/
H A Dport_allocator.cc69 blink::WebFrame* web_frame,
75 web_frame_(web_frame),
68 P2PPortAllocator( blink::WebFrame* web_frame, P2PSocketDispatcher* socket_dispatcher, rtc::NetworkManager* network_manager, rtc::PacketSocketFactory* socket_factory, const Config& config) argument
/external/chromium_org/mojo/services/html_viewer/
H A Dhtml_document_view.cc194 blink::WebLocalFrame* web_frame = blink::WebLocalFrame::create(this); local
195 parent->appendChild(web_frame);
196 return web_frame;
/external/chromium_org/chrome/renderer/net/
H A Dnet_error_helper.cc307 blink::WebFrame* web_frame = render_frame()->GetWebFrame(); local
308 DCHECK(!EqualsASCII(web_frame->dataSource()->request().httpMethod(), "POST"));
313 web_frame->loadRequest(request);
/external/chromium_org/content/renderer/gpu/
H A Dgpu_benchmarking_extension.cc185 WebLocalFrame* web_frame() const { function in class:content::__anon7714::GpuBenchmarkingContext
491 context.web_frame()->mainWorldScriptContext());
581 context.web_frame()->mainWorldScriptContext());
686 context.web_frame()->mainWorldScriptContext());
744 context.web_frame()->mainWorldScriptContext());
820 context.web_frame()->mainWorldScriptContext());
875 context.web_frame()->mainWorldScriptContext());
907 context.web_frame()->mainWorldScriptContext();
/external/chromium_org/content/renderer/media/webrtc/
H A Dpeer_connection_dependency_factory.cc121 blink::WebFrame* web_frame)
125 web_frame_(web_frame) {
383 blink::WebFrame* web_frame,
385 CHECK(web_frame);
395 web_frame);
399 GURL(web_frame->document().url().spec()).GetOrigin());
117 P2PPortAllocatorFactory( P2PSocketDispatcher* socket_dispatcher, rtc::NetworkManager* network_manager, rtc::PacketSocketFactory* socket_factory, blink::WebFrame* web_frame) argument
380 CreatePeerConnection( const webrtc::PeerConnectionInterface::RTCConfiguration& config, const webrtc::MediaConstraintsInterface* constraints, blink::WebFrame* web_frame, webrtc::PeerConnectionObserver* observer) argument
/external/chromium_org/android_webview/renderer/
H A Dprint_web_view_helper.cc444 web_view->setMainFrame(web_frame);
625 if (blink::WebFrame* web_frame = web_view->mainFrame())
626 prev_scroll_offset_ = web_frame->scrollOffset();
720 if (blink::WebFrame* web_frame = web_view->mainFrame())
721 web_frame->setScrollOffset(prev_scroll_offset_);
1795 blink::WebLocalFrame* web_frame) {
1796 DCHECK(web_frame);
1799 source_frame_.Reset(web_frame);
1794 InitWithFrame( blink::WebLocalFrame* web_frame) argument
/external/chromium_org/chrome/renderer/
H A Dchrome_content_renderer_client.cc1082 blink::WebFrame* web_frame = render_frame->GetWebFrame(); local
1084 if (net_error_helper->ShouldSuppressErrorPage(web_frame, url))
1174 return !current_context->web_frame()->parent();

Completed in 2407 milliseconds

12