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

  /external/chromium_org/chrome/renderer/extensions/
file_browser_private_custom_bindings.cc 16 #include "third_party/WebKit/public/web/WebFrame.h"
37 WebKit::WebFrame* webframe = local
38 WebKit::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 WebKit::WebFrame* webframe = local
53 WebKit::WebFrame::frameForContext(context()->v8_context());
55 webframe->createFileSystem(WebKit::WebFileSystemTypeExternal,
file_browser_handler_custom_bindings.cc 16 #include "third_party/WebKit/public/web/WebFrame.h"
48 WebKit::WebFrame* webframe = local
49 WebKit::WebFrame::frameForContext(context()->v8_context());
50 args.GetReturnValue().Set(webframe->createFileEntry(
media_galleries_custom_bindings.cc 13 #include "third_party/WebKit/public/web/WebFrame.h"
45 WebKit::WebFrame* webframe = WebKit::WebFrame::frameForCurrentContext(); local
46 const GURL origin = GURL(webframe->document().securityOrigin().toString());
52 webframe->createFileSystem(WebKit::WebFileSystemTypeIsolated,
file_system_natives.cc 19 #include "third_party/WebKit/public/web/WebFrame.h"
42 WebKit::WebFrame* webframe = local
43 WebKit::WebFrame::frameForContext(context()->v8_context());
44 DCHECK(webframe);
47 extensions::UserScriptSlave::GetDataSourceURLForFrame(webframe);
66 args.GetReturnValue().Set(webframe->createFileSystem(
96 WebKit::WebFrame* webframe = local
97 WebKit::WebFrame::frameForContext(context()->v8_context())
    [all...]
  /external/chromium_org/chrome/renderer/
external_extension.cc 13 #include "third_party/WebKit/public/web/WebFrame.h"
17 using WebKit::WebFrame;
81 WebFrame* webframe = WebFrame::frameForCurrentContext(); local
82 DCHECK(webframe) << "There should be an active frame since we just got "
84 if (!webframe) return NULL;
86 WebView* webview = webframe->view();
122 WebFrame* webframe = WebFrame::frameForCurrentContext()
    [all...]
  /external/chromium_org/chrome/renderer/searchbox/
searchbox_extension.cc 21 #include "third_party/WebKit/public/web/WebFrame.h"
72 void Dispatch(WebKit::WebFrame* frame, const WebKit::WebString& script) {
131 WebKit::WebFrame* webframe = WebKit::WebFrame::frameForCurrentContext(); local
132 if (!webframe)
134 WebKit::WebView* webview = webframe->view();
141 GURL url(webframe->document().url());
399 bool SearchBoxExtension::PageSupportsInstant(WebKit::WebFrame* frame) {
408 void SearchBoxExtension::DispatchFocusChange(WebKit::WebFrame* frame)
508 WebKit::WebFrame* webframe = WebKit::WebFrame::frameForCurrentContext(); local
    [all...]
  /external/chromium_org/content/renderer/npapi/
webplugin_impl.cc 43 #include "third_party/WebKit/public/web/WebFrame.h"
63 using WebKit::WebFrame;
492 WebFrame* webframe,
500 webframe_(webframe),
691 WebFrame* target_frame =
1359 WebFrame* webframe = webframe_; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
ChromeClientImpl.cpp 352 WebFrameImpl* webFrame = static_cast<WebFrameImpl*>(m_webView->mainFrame());
353 if (webFrame)
354 webFrame->setCanHaveScrollbars(value);
546 WebFrameImpl* webframe = WebFrameImpl::fromFrame(frame); local
547 webframe->didChangeContentsSize(size);
548 if (webframe->client())
549 webframe->client()->didChangeContentsSize(webframe, size);
758 // WebFrame::currentHistoryItem is requested.
759 WebFrameImpl* webframe = WebFrameImpl::fromFrame(node->document()->frame()) local
    [all...]

Completed in 110 milliseconds