/external/chromium_org/chrome/renderer/extensions/ |
file_browser_private_custom_bindings.cc | 16 #include "third_party/WebKit/public/web/WebFrame.h" 37 blink::WebFrame* webframe = local 38 blink::WebFrame::frameForContext(context()->v8_context()); 39 DCHECK(webframe); 41 webframe->createFileSystem(
|
sync_file_system_custom_bindings.cc | 11 #include "third_party/WebKit/public/web/WebFrame.h" 52 blink::WebFrame* webframe = local 53 blink::WebFrame::frameForContext(context()->v8_context()); 55 webframe->createFileSystem(blink::WebFileSystemTypeExternal,
|
media_galleries_custom_bindings.cc | 13 #include "third_party/WebKit/public/web/WebFrame.h" 45 blink::WebFrame* webframe = blink::WebFrame::frameForCurrentContext(); local 46 const GURL origin = GURL(webframe->document().securityOrigin().toString()); 52 webframe->createFileSystem(blink::WebFileSystemTypeIsolated,
|
file_browser_handler_custom_bindings.cc | 16 #include "third_party/WebKit/public/web/WebFrame.h" 48 blink::WebFrame* webframe = local 49 blink::WebFrame::frameForContext(context()->v8_context()); 50 args.GetReturnValue().Set(webframe->createFileEntry(
|
file_system_natives.cc | 20 #include "third_party/WebKit/public/web/WebFrame.h" 46 blink::WebFrame* webframe = local 47 blink::WebFrame::frameForContext(context()->v8_context()); 48 DCHECK(webframe); 51 extensions::UserScriptSlave::GetDataSourceURLForFrame(webframe); 70 args.GetReturnValue().Set(webframe->createFileSystem( 100 blink::WebFrame* webframe = local 101 blink::WebFrame::frameForContext(context()->v8_context()) [all...] |
request_sender.cc | 13 #include "third_party/WebKit/public/web/WebFrame.h" 83 if (blink::WebFrame* webframe = context->web_frame()) 84 source_url = webframe->document().url();
|
/external/chromium_org/chrome/renderer/ |
external_extension.cc | 13 #include "third_party/WebKit/public/web/WebFrame.h" 17 using blink::WebFrame; 85 WebFrame* webframe = WebFrame::frameForCurrentContext(); local 86 DCHECK(webframe) << "There should be an active frame since we just got " 88 if (!webframe) return NULL; 90 WebView* webview = webframe->view(); 126 WebFrame* webframe = WebFrame::frameForCurrentContext() [all...] |
principals_extension_bindings.cc | 10 #include "third_party/WebKit/public/web/WebFrame.h" 14 using blink::WebFrame; 82 WebFrame::frameForCurrentContext()->document().url(), 107 WebFrame* webframe = WebFrame::frameForCurrentContext(); local 108 DCHECK(webframe) << "There should be an active frame since we just got " 110 if (!webframe) 113 WebView* webview = webframe->view();
|
/external/chromium_org/third_party/WebKit/Source/web/ |
ChromeClientImpl.cpp | 352 WebFrameImpl* webFrame = toWebFrameImpl(m_webView->mainFrame()); 353 if (webFrame) 354 webFrame->setCanHaveScrollbars(value); 553 WebFrameImpl* webframe = WebFrameImpl::fromFrame(frame); local 554 webframe->didChangeContentsSize(size); 555 if (webframe->client()) 556 webframe->client()->didChangeContentsSize(webframe, size); 748 // WebFrame::currentHistoryItem is requested. 749 WebFrameImpl* webframe = WebFrameImpl::fromFrame(node->document().frame()) local [all...] |
WebDevToolsAgentImpl.cpp | 276 void WebDevToolsAgentImpl::didCreateScriptContext(WebFrameImpl* webframe, int worldId) 281 if (WebCore::Frame* frame = webframe->frame())
|
WebFrameImpl.cpp | 42 // FrameLoader O-------- WebFrame (via FrameLoaderClient) 47 // WebFrame is refcounted and has one ref on behalf of the FrameLoader/Frame. 53 // frame is created, and second in WebFrame::createChildFrame when sub-frames 68 // the WebFrame and will cause it to be deleted (unless an external someone 474 DeferredScopeStringMatches(WebFrameImpl* webFrame, int identifier, const WebString& searchText, const WebFindOptions& options, bool reset) 476 , m_webFrame(webFrame) 499 // WebFrame ------------------------------------------------------------------- 501 int WebFrame::instanceCount() 506 WebFrame* WebFrame::frameForCurrentContext( 2155 WebFrameImpl* webframe = toWebFrameImpl(m_client->createChildFrame(this, request.frameName())); local [all...] |
WebViewImpl.cpp | 302 void WebViewImpl::setMainFrame(WebFrame* frame) [all...] |
/external/chromium_org/chrome/renderer/searchbox/ |
searchbox_extension.cc | 23 #include "third_party/WebKit/public/web/WebFrame.h" 80 void Dispatch(blink::WebFrame* frame, const blink::WebString& script) { 148 blink::WebFrame* webframe = blink::WebFrame::frameForCurrentContext(); local 149 if (!webframe) 151 blink::WebView* webview = webframe->view(); 158 GURL url(webframe->document().url()); 453 bool SearchBoxExtension::PageSupportsInstant(blink::WebFrame* frame) { 463 blink::WebFrame* frame 592 blink::WebFrame* webframe = blink::WebFrame::frameForCurrentContext(); local [all...] |
/external/chromium_org/content/renderer/npapi/ |
webplugin_impl.cc | 48 #include "third_party/WebKit/public/web/WebFrame.h" 68 using blink::WebFrame; 482 WebFrame* webframe, 492 webframe_(webframe), 680 WebFrame* target_frame = 1395 WebFrame* webframe = webframe_; local [all...] |
webplugin_impl.h | 33 class WebFrame; 58 blink::WebFrame* frame, 70 blink::WebFrame* webframe() { return webframe_; } function in class:content::WebPluginImpl 292 blink::WebFrame* webframe_;
|