Searched refs:webFrame (Results 1 - 25 of 25) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/web/
H A DEditorClientImpl.cpp50 WebLocalFrameImpl* webFrame = WebLocalFrameImpl::fromFrame(frame); local
51 if (webFrame->client())
52 webFrame->client()->didChangeSelection(selectionType != RangeSelection);
63 WebLocalFrameImpl* webFrame = WebLocalFrameImpl::fromFrame(frame); local
64 if (!webFrame->permissionClient())
66 return webFrame->permissionClient()->allowWriteToClipboard(defaultValue);
71 WebLocalFrameImpl* webFrame = WebLocalFrameImpl::fromFrame(frame); local
72 if (!webFrame->permissionClient())
74 return webFrame->permissionClient()->allowReadFromClipboard(defaultValue);
H A DMediaKeysClientImpl.cpp23 WebLocalFrameImpl* webFrame = WebLocalFrameImpl::fromFrame(document->frame()); local
25 return adoptPtr(webFrame->client()->createContentDecryptionModule(webFrame, securityOrigin, keySystem));
H A DWorkerGlobalScopeProxyProviderImpl.cpp56 WebLocalFrameImpl* webFrame = WebLocalFrameImpl::fromFrame(document->frame()); local
59 providePermissionClientToWorker(workerClients.get(), adoptPtr(webFrame->client()->createWorkerPermissionClientProxy(webFrame)));
60 provideServiceWorkerContainerClientToWorker(workerClients.get(), adoptPtr(webFrame->client()->createServiceWorkerProvider(webFrame)));
H A DStorageClientImpl.cpp50 WebLocalFrameImpl* webFrame = WebLocalFrameImpl::fromFrame(frame); local
51 return !webFrame->permissionClient() || webFrame->permissionClient()->allowStorage(type == LocalStorage);
H A DDatabaseClientImpl.cpp54 WebLocalFrameImpl* webFrame = WebLocalFrameImpl::fromFrame(document->frame()); local
55 if (!webFrame)
57 if (webFrame->permissionClient())
58 return webFrame->permissionClient()->allowDatabase(name, displayName, estimatedSize);
H A DIndexedDBClientImpl.cpp56 WebLocalFrameImpl* webFrame = WebLocalFrameImpl::fromFrame(document->frame()); local
57 // FIXME: webFrame->permissionClient() returns 0 in test_shell and content_shell http://crbug.com/137269
58 return !webFrame->permissionClient() || webFrame->permissionClient()->allowIndexedDB(name, origin);
H A DUserMediaClientImpl.cpp44 UserMediaClientImpl::UserMediaClientImpl(WebLocalFrameImpl* webFrame) argument
45 : m_client(webFrame->client() ? webFrame->client()->userMediaClient() : 0)
H A DStorageQuotaClientImpl.cpp68 WebLocalFrameImpl* webFrame = WebLocalFrameImpl::fromFrame(document->frame()); local
70 webFrame->client()->requestStorageQuota(webFrame, storageType, newQuotaInBytes, callbacks.release());
84 WebLocalFrameImpl* webFrame = WebLocalFrameImpl::fromFrame(document->frame()); local
86 webFrame->client()->requestStorageQuota(webFrame, WebStorageQuotaTypePersistent, newQuotaInBytes, callbacks.release());
H A DLocalFileSystemClient.cpp76 WebLocalFrameImpl* webFrame = WebLocalFrameImpl::fromFrame(document->frame()); local
77 if (!webFrame->permissionClient()) {
81 webFrame->permissionClient()->requestFileSystemAccessAsync(callbacks);
H A DNotificationPermissionClientImpl.cpp58 WebLocalFrameImpl* webFrame = WebLocalFrameImpl::fromFrame(document->frame()); local
60 webFrame->client()->requestNotificationPermission(WebSecurityOrigin(context->securityOrigin()), new WebNotificationPermissionCallbackImpl(callback));
H A DRemoteFrameClient.cpp14 RemoteFrameClient::RemoteFrameClient(WebRemoteFrameImpl* webFrame) argument
15 : m_webFrame(webFrame)
H A DWebRange.cpp108 LocalFrame* webFrame = toWebLocalFrameImpl(frame)->frame(); local
109 Element* selectionRoot = webFrame->selection().rootEditableElement();
110 ContainerNode* scope = selectionRoot ? selectionRoot : webFrame->document()->documentElement();
H A DRemoteFrameClient.h31 WebRemoteFrameImpl* webFrame() const { return m_webFrame; } function in class:blink::RemoteFrameClient
H A DWebMediaPlayerClientImpl.cpp55 WebLocalFrameImpl* webFrame = WebLocalFrameImpl::fromFrame(frame); local
57 if (!webFrame || !webFrame->client())
59 return adoptPtr(webFrame->client()->createMediaPlayer(webFrame, url, client, initialCdm));
H A DChromeClientImpl.cpp346 WebLocalFrameImpl* webFrame = toWebLocalFrameImpl(m_webView->mainFrame()); local
347 if (webFrame)
348 webFrame->setCanHaveScrollbars(value);
855 WebLocalFrameImpl* webFrame = WebLocalFrameImpl::fromFrame(toLocalFrame(frame));
862 webFrame->client()->forwardInputEvent(&webEvent);
864 WebMouseEventBuilder webEvent(webFrame->frameView(), frame->ownerRenderer(), *static_cast<MouseEvent*>(event));
869 webFrame->client()->forwardInputEvent(&webEvent);
871 WebMouseWheelEventBuilder webEvent(webFrame->frameView(), frame->ownerRenderer(), *static_cast<WheelEvent*>(event));
874 webFrame->client()->forwardInputEvent(&webEvent);
H A DWebPageSerializerImpl.cpp478 WebLocalFrameImpl* webFrame = local
480 if (webFrame)
481 m_frames.append(webFrame);
495 WebLocalFrameImpl* webFrame = m_frames[i]; local
496 Document* document = webFrame->frame()->document();
H A DFrameLoaderClientImpl.h49 explicit FrameLoaderClientImpl(WebLocalFrameImpl* webFrame);
52 WebLocalFrameImpl* webFrame() const { return m_webFrame; } function in class:blink::FINAL
H A DWebEmbeddedWorkerImpl.cpp302 WebLocalFrameImpl* webFrame = toWebLocalFrameImpl(m_webView->mainFrame()); local
309 webFrame->frame()->loader().load(FrameLoadRequest(0, ResourceRequest(m_workerStartData.scriptURL), SubstituteData(buffer, "text/html", "UTF-8", KURL())));
H A DWebSharedWorkerImpl.cpp209 WebLocalFrameImpl* webFrame = toWebLocalFrameImpl(m_webView->mainFrame()); local
216 webFrame->frame()->loader().load(FrameLoadRequest(0, ResourceRequest(url), SubstituteData(buffer, "text/html", "UTF-8", KURL())));
H A DWebRemoteFrameImpl.cpp870 return static_cast<RemoteFrameClient*>(frame.client())->webFrame();
H A DFrameLoaderClientImpl.cpp768 m_webFrame->client()->willStartUsingPeerConnectionHandler(webFrame(), handler);
H A DWebLocalFrameImpl.cpp1659 return toFrameLoaderClientImpl(client)->webFrame();
H A DWebViewImpl.cpp995 WebLocalFrameImpl* webFrame = WebLocalFrameImpl::fromFrame(toLocalFrameTemporary(focusedFrame.get())); local
996 webFrame->client()->forwardInputEvent(&event);
/external/chromium_org/third_party/WebKit/Source/web/mac/
H A DWebSubstringUtil.mm151 NSAttributedString* WebSubstringUtil::attributedSubstringInRange(WebLocalFrame* webFrame, size_t location, size_t length)
153 LocalFrame* frame = toWebLocalFrameImpl(webFrame)->frame();
/external/chromium_org/third_party/WebKit/public/web/
H A DWebFrameClient.h402 WebLocalFrame* webFrame, unsigned identifier, const WebURLRequest::Priority& priority, int) { }
401 didChangeResourcePriority( WebLocalFrame* webFrame, unsigned identifier, const WebURLRequest::Priority& priority, int) argument

Completed in 197 milliseconds