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

1 2

  /external/webkit/Source/WebKit/mac/WebView/
WebFrame.mm 234 return frame ? frame->_private->coreFrame : 0;
254 Frame* coreFrame = core(webFrame);
255 if (!coreFrame)
257 return kit(coreFrame->page());
265 RefPtr<Frame> coreFrame = Frame::create(page, ownerElement, new WebFrameLoaderClient(frame));
267 frame->_private->coreFrame = coreFrame.get();
269 coreFrame->tree()->setName(name);
272 ownerElement->document()->frame()->tree()->appendChild(coreFrame.get());
275 coreFrame->init()
    [all...]
WebRenderNode.mm 59 - (id)_initWithName:(NSString *)n position:(NSPoint)p rect:(NSRect)r coreFrame:(Frame*)coreFrame children:(NSArray *)c
73 if (coreFrame) {
74 WebRenderNode *node = [[WebRenderNode alloc] _initWithCoreFrame:coreFrame];
132 coreFrame:frame children:children];
WebHTMLView.mm 306 Frame* coreFrame = core([enclosingWebFrameView webFrame]);
307 FrameView* frameView = coreFrame ? coreFrame->view() : 0;
898 Frame* coreFrame = core([self _frame]);
903 coreFrame->editor()->pasteAsFragment(core(fragment), [self _canSmartReplaceWithPasteboard:pasteboard], false);
    [all...]
WebClipView.mm 93 if (Frame* coreFrame = core([webFrameView webFrame])) {
94 if (FrameView* frameView = coreFrame->view()) {
WebHTMLRepresentation.mm 182 Frame* coreFrame = core(webFrame);
183 if (coreFrame->document()->isMediaDocument())
184 coreFrame->loader()->documentLoader()->cancelMainResourceLoad(coreFrame->loader()->client()->pluginWillHandleLoadError(coreFrame->loader()->documentLoader()->response()));
247 Frame* coreFrame = core([_private->dataSource webFrame]);
248 if (!coreFrame)
250 Document* document = coreFrame->document();
WebFrameView.mm 503 if (Frame* coreFrame = [self _web_frame]) {
504 if (FrameView* coreFrameView = coreFrame->view())
540 Frame* coreFrame = [self _web_frame];
541 if (!coreFrame)
543 Document* document = coreFrame->document();
554 Frame* coreFrame = [self _web_frame];
555 if (!coreFrame)
557 Document* document = coreFrame->document();
784 Frame* coreFrame = [self _web_frame];
785 BOOL maintainsBackForwardList = coreFrame && static_cast<BackForwardListImpl*>(coreFrame->page()->backForwardList())->enabled() ? YES : NO
    [all...]
WebViewEventHandling.mm 190 if (Frame* coreFrame = core([lastMouseoverView mainFrame]))
191 coreFrame->eventHandler()->mouseMoved(event);
  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebframe.cpp 155 if (priv->coreFrame)
156 DOMObjectCache::clearByFrame(priv->coreFrame);
157 priv->coreFrame = 0;
170 if (priv->coreFrame) {
171 DOMObjectCache::clearByFrame(priv->coreFrame);
172 priv->coreFrame->loader()->cancelAndClear();
173 priv->coreFrame = 0;
413 priv->coreFrame = Frame::create(viewPriv->corePage, 0, client).get();
414 priv->coreFrame->init();
485 Frame* coreFrame = core(frame)
    [all...]
webkitwebframeprivate.h 42 WebCore::Frame* coreFrame;
webkitglobals.cpp 217 if (!context->coreFrame())
220 GtkWidget* toplevel = gtk_widget_get_toplevel(GTK_WIDGET(context->coreFrame()->page()->chrome()->platformPageClient()));
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
DumpRenderTreeSupportGtk.cpp 156 Frame* coreFrame = core(frame);
157 if (!coreFrame)
161 for (Frame* child = coreFrame->tree()->firstChild(); child; child = child->tree()->nextSibling()) {
181 Frame* coreFrame = core(frame);
182 if (!coreFrame)
185 FrameView* view = coreFrame->view();
190 Element* documentElement = coreFrame->document()->documentElement();
204 Frame* coreFrame = core(frame);
205 if (!coreFrame)
208 FrameView* view = coreFrame->view()
    [all...]
FrameNetworkingContextGtk.h 34 WebCore::Frame* coreFrame() const { return frame(); }
FrameLoaderClientGtk.cpp 238 if (!priv->coreFrame || !priv->coreFrame->document())
241 RenderView* contentRenderer = priv->coreFrame->contentRenderer();
245 AXObjectCache* axObjectCache = priv->coreFrame->document()->axObjectCache();
322 Frame* coreFrame = loader->frame();
323 if (coreFrame && coreFrame->document()->isMediaDocument())
324 loader->cancelMainResourceLoad(coreFrame->loader()->client()->pluginWillHandleLoadError(loader->response()));
653 framePrivate->coreFrame = childFrame.get();
679 Frame* coreFrame = core(m_frame)
    [all...]
  /external/webkit/Source/WebKit/win/
WebFrame.cpp 322 Frame* coreFrame = core(this);
323 if (!coreFrame)
326 coreFrame->loader()->reload(true);
334 Frame* coreFrame = core(this);
335 if (!coreFrame)
338 FrameView* view = coreFrame->view();
367 Frame* coreFrame = core(this);
368 if (!coreFrame)
371 FrameView* view = coreFrame->view();
438 Frame* coreFrame = core(this)
    [all...]
  /external/webkit/Source/WebKit/efl/WebCoreSupport/
FrameNetworkingContextEfl.h 43 WebCore::Frame* coreFrame() const { return frame(); }
  /external/webkit/Source/WebKit/wx/WebKitSupport/
FrameNetworkingContextWx.h 40 WebCore::Frame* coreFrame() const { return frame(); }
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundle.cpp 150 Frame* coreFrame = frame ? frame->coreFrame() : 0;
151 if (!coreFrame)
154 pageWidthInPixels = coreFrame->view()->width();
156 pageHeightInPixels = coreFrame->view()->height();
158 return PrintContext::numberOfPages(coreFrame, FloatSize(pageWidthInPixels, pageHeightInPixels));
163 Frame* coreFrame = frame ? frame->coreFrame() : 0;
164 if (!coreFrame)
167 Element* element = coreFrame->document()->getElementById(AtomicString(id))
    [all...]
InjectedBundleNavigationAction.cpp 94 m_hitTestResult = InjectedBundleHitTestResult::create(frame->coreFrame()->eventHandler()->hitTestResultAtPoint(mouseEvent->absoluteLocation(), false));
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
DumpRenderTreeSupportQt.cpp 241 Frame* coreFrame = QWebFramePrivate::core(frame);
242 InspectorController* controller = coreFrame->page()->inspectorController();
257 Frame* coreFrame = QWebFramePrivate::core(frame);
258 if (!coreFrame)
261 AnimationController* controller = coreFrame->animation();
265 Document* doc = coreFrame->document();
277 Frame* coreFrame = QWebFramePrivate::core(frame);
278 if (!coreFrame)
281 AnimationController* controller = coreFrame->animation();
285 Document* doc = coreFrame->document()
    [all...]
  /external/webkit/Source/WebKit/mac/Misc/
WebCoreStatistics.mm 268 return externalRepresentation(_private->coreFrame, forPrinting ? RenderAsTextPrintingMode : RenderAsTextBehaviorNormal);
283 return PrintContext::numberOfPages(_private->coreFrame, FloatSize(pageWidthInPixels, pageHeightInPixels));
288 return PrintContext::pageProperty(_private->coreFrame, propertyName, pageNumber);
293 return PrintContext::isPageBoxVisible(_private->coreFrame, pageNumber);
298 return PrintContext::pageSizeAndMarginsInPixels(_private->coreFrame, pageNumber, width, height, marginTop, marginRight, marginBottom, marginLeft);
303 Frame* coreFrame = _private->coreFrame;
304 if (!coreFrame)
308 PrintContext::spoolAllPagesWithBoundaries(coreFrame, graphicsContext, FloatSize(pageWidthInPixels, pageHeightInPixels));
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundleFrame.cpp 61 Frame* coreFrame = toImpl(frameRef)->coreFrame();
62 if (!coreFrame)
65 FrameLoader* loader = coreFrame->loader();
169 Frame* coreFrame = toImpl(frameRef)->coreFrame();
170 if (coreFrame)
171 coreFrame->loader()->setOpener(0);
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebFrameLoaderClient.cpp 282 DocumentLoader* provisionalLoader = m_frame->coreFrame()->loader()->provisionalDocumentLoader();
325 webPage->send(Messages::WebPageProxy::DidSameDocumentNavigationForFrame(m_frame->frameID(), SameDocumentNavigationAnchorNavigation, m_frame->coreFrame()->document()->url().string(), InjectedBundleUserMessageEncoder(userData.get())));
340 webPage->send(Messages::WebPageProxy::DidSameDocumentNavigationForFrame(m_frame->frameID(), SameDocumentNavigationSessionStatePush, m_frame->coreFrame()->document()->url().string(), InjectedBundleUserMessageEncoder(userData.get())));
355 webPage->send(Messages::WebPageProxy::DidSameDocumentNavigationForFrame(m_frame->frameID(), SameDocumentNavigationSessionStateReplace, m_frame->coreFrame()->document()->url().string(), InjectedBundleUserMessageEncoder(userData.get())));
370 webPage->send(Messages::WebPageProxy::DidSameDocumentNavigationForFrame(m_frame->frameID(), SameDocumentNavigationSessionStatePop, m_frame->coreFrame()->document()->url().string(), InjectedBundleUserMessageEncoder(userData.get())));
392 DocumentLoader* provisionalLoader = m_frame->coreFrame()->loader()->provisionalDocumentLoader();
432 const ResourceResponse& response = m_frame->coreFrame()->loader()->documentLoader()->response();
445 if (m_frame->isMainFrame() && m_frame->coreFrame()->loader()->loadType() == FrameLoadTypeStandard) {
446 if (m_frame->coreFrame()->pageScaleFactor() != 1)
562 Page* newPage = webPage->corePage()->chrome()->createWindow(m_frame->coreFrame(), FrameLoadRequest(m_frame->coreFrame()->document()->securityOrigin()), WindowFeatures(), navigat (…)
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebPage.cpp 342 return externalRepresentation(m_mainFrame->coreFrame(), RenderAsTextBehaviorNormal);
365 mainFrame()->coreFrame()->tree()->clearName();
411 m_mainFrame->coreFrame()->loader()->detachFromParent();
428 if (!m_mainFrame->coreFrame()->loader()->shouldClose())
447 m_mainFrame->coreFrame()->loader()->load(request, false);
454 m_mainFrame->coreFrame()->loader()->load(request, substituteData, false);
498 frame->coreFrame()->loader()->stopForUserCancel();
503 m_mainFrame->coreFrame()->loader()->stopForUserCancel();
513 m_mainFrame->coreFrame()->loader()->reload(reloadFromOrigin);
551 if (m_mainFrame->coreFrame()->view()
    [all...]
  /external/webkit/Source/WebKit/mac/Plugins/
WebPluginContainerCheck.mm 100 Frame* coreFrame = core([_controller webFrame]);
101 ASSERT(coreFrame);
102 if (!coreFrame->document()->securityOrigin()->canDisplay([_request URL])) {
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebFrameLoaderClient.cpp 500 Frame* coreFrame = core(m_webFrame);
501 if (coreFrame->document()->isMediaDocument())
714 Frame* coreFrame = core(m_webFrame);
715 if (!coreFrame)
718 ASSERT(coreFrame->loader()->documentLoader() == cachedFrame->documentLoader());
720 WebCachedFramePlatformData* webPlatformData = new WebCachedFramePlatformData(static_cast<IWebDataSource*>(getWebDataSource(coreFrame->loader()->documentLoader())));
770 Frame* coreFrame = core(m_webFrame);
771 ASSERT(coreFrame);
772 WebView* webView = kit(coreFrame->page());
797 Frame* coreFrame = core(m_webFrame)
    [all...]

Completed in 342 milliseconds

1 2