您当前的位置:首页 > IT编程 > C++
| C语言 | Java | VB | VC | python | Android | TensorFlow | C++ | oracle | 学术与代码 | cnn卷积神经网络 | gnn | 图像修复 | Keras | 数据集 | Neo4j | 自然语言处理 | 深度学习 | 医学CAD | 医学影像 | 超参数 | pointnet | pytorch | 异常检测 | Transformers | 情感分类 | 知识图谱 |

自学教程:C++ toLocalFrame函数代码示例

51自学网 2021-06-03 08:53:06
  C++
这篇教程C++ toLocalFrame函数代码示例写得很实用,希望能帮到您。

本文整理汇总了C++中toLocalFrame函数的典型用法代码示例。如果您正苦于以下问题:C++ toLocalFrame函数的具体用法?C++ toLocalFrame怎么用?C++ toLocalFrame使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。

在下文中一共展示了toLocalFrame函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。

示例1: allPages

void Page::refreshPlugins(bool reload){    if (allPages().isEmpty())        return;    PluginData::refresh();    Vector<RefPtr<LocalFrame> > framesNeedingReload;    HashSet<Page*>::iterator end = allPages().end();    for (HashSet<Page*>::iterator it = allPages().begin(); it != end; ++it) {        Page* page = *it;        // Clear out the page's plug-in data.        if (page->m_pluginData)            page->m_pluginData = nullptr;        if (!reload)            continue;        for (Frame* frame = (*it)->mainFrame(); frame; frame = frame->tree().traverseNext()) {            if (frame->isLocalFrame() && toLocalFrame(frame)->document()->containsPlugins())                framesNeedingReload.append(toLocalFrame(frame));        }    }    for (size_t i = 0; i < framesNeedingReload.size(); ++i)        framesNeedingReload[i]->loader().reload();}
开发者ID:Drakey83,项目名称:steamlink-sdk,代码行数:29,


示例2: toLocalFrame

void Page::willBeDestroyed(){    RefPtr<Frame> mainFrame = m_mainFrame;    if (mainFrame->isLocalFrame())        toLocalFrame(mainFrame.get())->loader().frameDetached();    // Disable all agents prior to resetting the frame view.    m_inspectorController->willBeDestroyed();    if (mainFrame->isLocalFrame()) {        toLocalFrame(mainFrame.get())->setView(nullptr);    } else {        ASSERT(m_mainFrame->isRemoteFrame());        toRemoteFrame(mainFrame.get())->setView(nullptr);    }    allPages().remove(this);    if (ordinaryPages().contains(this))        ordinaryPages().remove(this);    if (m_scrollingCoordinator)        m_scrollingCoordinator->willBeDestroyed();#ifndef NDEBUG    pageCounter.decrement();#endif    m_chrome->willBeDestroyed();    m_mainFrame = 0;    if (m_validationMessageClient)        m_validationMessageClient->willBeDestroyed();    WillBeHeapSupplementable<Page>::willBeDestroyed();}
开发者ID:Drakey83,项目名称:steamlink-sdk,代码行数:34,


示例3: createWindowForRequest

void createWindowForRequest(const FrameLoadRequest& request, LocalFrame& openerFrame, NavigationPolicy policy){    ASSERT(request.resourceRequest().requestorOrigin() || (openerFrame.document() && openerFrame.document()->url().isEmpty()));    if (openerFrame.document()->pageDismissalEventBeingDispatched() != Document::NoDismissal)        return;    if (openerFrame.document() && openerFrame.document()->isSandboxed(SandboxPopups))        return;    if (!LocalDOMWindow::allowPopUp(openerFrame))        return;    if (policy == NavigationPolicyCurrentTab)        policy = NavigationPolicyNewForegroundTab;    WindowFeatures features;    features.noopener = request.getShouldSetOpener() == NeverSetOpener;    bool created;    Frame* newFrame = createWindowHelper(openerFrame, openerFrame, openerFrame, request, features, policy, created);    if (!newFrame)        return;    if (request.getShouldSendReferrer() == MaybeSendReferrer) {        // TODO(japhet): Does ReferrerPolicy need to be proagated for RemoteFrames?        if (newFrame->isLocalFrame())            toLocalFrame(newFrame)->document()->setReferrerPolicy(openerFrame.document()->getReferrerPolicy());    }    // TODO(japhet): Form submissions on RemoteFrames don't work yet.    FrameLoadRequest newRequest(0, request.resourceRequest());    newRequest.setForm(request.form());    if (newFrame->isLocalFrame())        toLocalFrame(newFrame)->loader().load(newRequest);}
开发者ID:endlessm,项目名称:chromium-browser,代码行数:34,


示例4: toLocalFrame

void PaintLayerCompositor::updateIfNeededRecursive(){    FrameView* view = m_layoutView.frameView();    if (view->shouldThrottleRendering())        return;    for (Frame* child = m_layoutView.frameView()->frame().tree().firstChild(); child; child = child->tree().nextSibling()) {        if (!child->isLocalFrame())            continue;        LocalFrame* localFrame = toLocalFrame(child);        // It's possible for trusted Pepper plugins to force hit testing in situations where        // the frame tree is in an inconsistent state, such as in the middle of frame detach.        // TODO(bbudge) Remove this check when trusted Pepper plugins are gone.        if (localFrame->document()->isActive())            localFrame->contentLayoutObject()->compositor()->updateIfNeededRecursive();    }    TRACE_EVENT0("blink", "PaintLayerCompositor::updateIfNeededRecursive");    ASSERT(!m_layoutView.needsLayout());    ScriptForbiddenScope forbidScript;    // FIXME: enableCompositingModeIfNeeded can trigger a CompositingUpdateRebuildTree,    // which asserts that it's not InCompositingUpdate.    enableCompositingModeIfNeeded();    if (m_needsUpdateDescendantDependentFlags) {        updateDescendantDependentFlagsForEntireSubtree(*rootLayer());        m_needsUpdateDescendantDependentFlags = false;    }    m_layoutView.commitPendingSelection();    lifecycle().advanceTo(DocumentLifecycle::InCompositingUpdate);    updateIfNeeded();    lifecycle().advanceTo(DocumentLifecycle::CompositingClean);    DocumentAnimations::updateCompositorAnimations(m_layoutView.document());    m_layoutView.frameView()->scrollableArea()->updateCompositorScrollAnimations();    if (const FrameView::ScrollableAreaSet* animatingScrollableAreas = m_layoutView.frameView()->animatingScrollableAreas()) {        for (ScrollableArea* scrollableArea : *animatingScrollableAreas)            scrollableArea->updateCompositorScrollAnimations();    }#if ENABLE(ASSERT)    ASSERT(lifecycle().state() == DocumentLifecycle::CompositingClean);    assertNoUnresolvedDirtyBits();    for (Frame* child = m_layoutView.frameView()->frame().tree().firstChild(); child; child = child->tree().nextSibling()) {        if (!child->isLocalFrame())            continue;        LocalFrame* localFrame = toLocalFrame(child);        if (localFrame->shouldThrottleRendering())            continue;        localFrame->contentLayoutObject()->compositor()->assertNoUnresolvedDirtyBits();    }#endif}
开发者ID:joone,项目名称:chromium-crosswalk,代码行数:59,


示例5: toLocalFrame

void WindowProxy::updateActivityLogger() {  m_scriptState->perContextData()->setActivityLogger(      V8DOMActivityLogger::activityLogger(          m_world->worldId(),          m_frame->isLocalFrame() && toLocalFrame(m_frame)->document()              ? toLocalFrame(m_frame)->document()->baseURI()              : KURL()));}
开发者ID:ollie314,项目名称:chromium,代码行数:8,


示例6: gestureEvent

bool WebDevToolsAgentImpl::handleInputEvent(blink::Page* page, const WebInputEvent& inputEvent){    if (!m_attached && !m_generatingEvent)        return false;    // FIXME: This workaround is required for touch emulation on Mac, where    // compositor-side pinch handling is not enabled. See http://crbug.com/138003.    bool isPinch = inputEvent.type == WebInputEvent::GesturePinchBegin || inputEvent.type == WebInputEvent::GesturePinchUpdate || inputEvent.type == WebInputEvent::GesturePinchEnd;    if (isPinch && m_touchEventEmulationEnabled) {        FrameView* frameView = page->deprecatedLocalMainFrame()->view();        PlatformGestureEventBuilder gestureEvent(frameView, static_cast<const WebGestureEvent&>(inputEvent));        float pageScaleFactor = page->pageScaleFactor();        if (gestureEvent.type() == PlatformEvent::GesturePinchBegin) {            m_lastPinchAnchorCss = adoptPtr(new blink::IntPoint(frameView->scrollPosition() + gestureEvent.position()));            m_lastPinchAnchorDip = adoptPtr(new blink::IntPoint(gestureEvent.position()));            m_lastPinchAnchorDip->scale(pageScaleFactor, pageScaleFactor);        }        if (gestureEvent.type() == PlatformEvent::GesturePinchUpdate && m_lastPinchAnchorCss) {            float newPageScaleFactor = pageScaleFactor * gestureEvent.scale();            blink::IntPoint anchorCss(*m_lastPinchAnchorDip.get());            anchorCss.scale(1.f / newPageScaleFactor, 1.f / newPageScaleFactor);            m_webViewImpl->setPageScaleFactor(newPageScaleFactor);            m_webViewImpl->setMainFrameScrollOffset(*m_lastPinchAnchorCss.get() - toIntSize(anchorCss));        }        if (gestureEvent.type() == PlatformEvent::GesturePinchEnd) {            m_lastPinchAnchorCss.clear();            m_lastPinchAnchorDip.clear();        }        return true;    }    InspectorController* ic = inspectorController();    if (!ic)        return false;    if (WebInputEvent::isGestureEventType(inputEvent.type) && inputEvent.type == WebInputEvent::GestureTap) {        // Only let GestureTab in (we only need it and we know PlatformGestureEventBuilder supports it).        PlatformGestureEvent gestureEvent = PlatformGestureEventBuilder(page->deprecatedLocalMainFrame()->view(), static_cast<const WebGestureEvent&>(inputEvent));        return ic->handleGestureEvent(toLocalFrame(page->mainFrame()), gestureEvent);    }    if (WebInputEvent::isMouseEventType(inputEvent.type) && inputEvent.type != WebInputEvent::MouseEnter) {        // PlatformMouseEventBuilder does not work with MouseEnter type, so we filter it out manually.        PlatformMouseEvent mouseEvent = PlatformMouseEventBuilder(page->deprecatedLocalMainFrame()->view(), static_cast<const WebMouseEvent&>(inputEvent));        return ic->handleMouseEvent(toLocalFrame(page->mainFrame()), mouseEvent);    }    if (WebInputEvent::isTouchEventType(inputEvent.type)) {        PlatformTouchEvent touchEvent = PlatformTouchEventBuilder(page->deprecatedLocalMainFrame()->view(), static_cast<const WebTouchEvent&>(inputEvent));        return ic->handleTouchEvent(toLocalFrame(page->mainFrame()), touchEvent);    }    if (WebInputEvent::isKeyboardEventType(inputEvent.type)) {        PlatformKeyboardEvent keyboardEvent = PlatformKeyboardEventBuilder(static_cast<const WebKeyboardEvent&>(inputEvent));        return ic->handleKeyboardEvent(page->deprecatedLocalMainFrame(), keyboardEvent);    }    return false;}
开发者ID:darktears,项目名称:blink-crosswalk,代码行数:55,


示例7: cancel

bool WebPagePopupImpl::handleGestureEvent(const WebGestureEvent& event){    if (m_closing || !m_page || !m_page->mainFrame() || !toLocalFrame(m_page->mainFrame())->view())        return false;    if (event.type == WebInputEvent::GestureTap && !isGestureEventInWindow(event)) {        cancel();        return false;    }    LocalFrame& frame = *toLocalFrame(m_page->mainFrame());    return frame.eventHandler().handleGestureEvent(PlatformGestureEventBuilder(frame.view(), event));}
开发者ID:zhen-yin,项目名称:chromium.bb,代码行数:11,


示例8: findFrameWithSecurityOrigin

static LocalFrame* findFrameWithSecurityOrigin(LocalFrame* inspectedFrame, const String& originRawString){    for (Frame* frame = inspectedFrame; frame; frame = frame->tree().traverseNext(inspectedFrame)) {        if (!frame->isLocalFrame())            continue;        RefPtr<SecurityOrigin> documentOrigin = toLocalFrame(frame)->document()->securityOrigin();        if (documentOrigin->toRawString() == originRawString)            return toLocalFrame(frame);    }    return nullptr;}
开发者ID:dstockwell,项目名称:blink,代码行数:11,


示例9: find

Frame* FrameTree::find(const AtomicString& name) const{    if (name == "_self" || name == "_current" || name.isEmpty())        return m_thisFrame;    if (name == "_top") {      for (LocalFrame* f = toLocalFrame(m_thisFrame); f; f = toLocalFrame(f->tree().parent())) {            if (f->isNwFakeTop())                return f;        }        return top();    }    if (name == "_parent") {        if (m_thisFrame->isNwFakeTop())            return m_thisFrame.get();        return parent() ? parent() : m_thisFrame.get();    }    // Since "_blank" should never be any frame's name, the following just amounts to an optimization.    if (name == "_blank")        return nullptr;    // Search subtree starting with this frame first.    for (Frame* frame = m_thisFrame; frame; frame = frame->tree().traverseNext(m_thisFrame))        if (frame->tree().name() == name)            return frame;    // Search the entire tree for this page next.    Page* page = m_thisFrame->page();    // The frame could have been detached from the page, so check it.    if (!page)        return nullptr;    for (Frame* frame = page->mainFrame(); frame; frame = frame->tree().traverseNext())        if (frame->tree().name() == name)            return frame;    // Search the entire tree of each of the other pages in this namespace.    // FIXME: Is random order OK?    const HashSet<Page*>& pages = Page::ordinaryPages();    for (const Page* otherPage : pages) {        if (otherPage != page) {            for (Frame* frame = otherPage->mainFrame(); frame; frame = frame->tree().traverseNext()) {                if (frame->tree().name() == name)                    return frame;            }        }    }    return nullptr;}
开发者ID:kjthegod,项目名称:WebKit,代码行数:53,


示例10: toLocalFrame

Frame* FrameTree::scopedChild(const AtomicString& name) const{    if (!m_thisFrame->isLocalFrame())        return 0;    TreeScope* scope = toLocalFrame(m_thisFrame)->document();    if (!scope)        return 0;    for (Frame* child = firstChild(); child; child = child->tree().nextSibling())        if (child->tree().name() == name && child->isLocalFrame() && toLocalFrame(child)->inScope(scope))            return child;    return 0;}
开发者ID:darktears,项目名称:blink-crosswalk,代码行数:14,


示例11: ASSERT

void ScreenOrientationController::notifyOrientationChanged(){    ASSERT(RuntimeEnabledFeatures::screenOrientationEnabled());    if (!isActiveAndVisible())        return;    updateOrientation();    // Keep track of the frames that need to be notified before notifying the    // current frame as it will prevent side effects from the change event    // handlers.    WillBeHeapVector<RefPtrWillBeMember<LocalFrame> > childFrames;    for (Frame* child = frame()->tree().firstChild(); child; child = child->tree().nextSibling()) {        if (child->isLocalFrame())            childFrames.append(toLocalFrame(child));    }    // Notify current orientation object.    if (!m_dispatchEventTimer.isActive())        m_dispatchEventTimer.startOneShot(0, FROM_HERE);    // ... and child frames, if they have a ScreenOrientationController.    for (size_t i = 0; i < childFrames.size(); ++i) {        if (ScreenOrientationController* controller = ScreenOrientationController::from(*childFrames[i]))            controller->notifyOrientationChanged();    }}
开发者ID:kjthegod,项目名称:WebKit,代码行数:28,


示例12: scope

void WindowProxy::updateDocumentProperty(){    if (!m_world->isMainWorld())        return;    if (m_frame->isRemoteFrame()) {        return;    }    ScriptState::Scope scope(m_scriptState.get());    v8::Local<v8::Context> context = m_scriptState->context();    LocalFrame* frame = toLocalFrame(m_frame);    v8::Local<v8::Value> documentWrapper = toV8(frame->document(), context->Global(), context->GetIsolate());    if (documentWrapper.IsEmpty())        return;    ASSERT(documentWrapper == m_document.newLocal(m_isolate) || m_document.isEmpty());    if (m_document.isEmpty())        updateDocumentWrapper(v8::Local<v8::Object>::Cast(documentWrapper));    checkDocumentWrapper(m_document.newLocal(m_isolate), frame->document());    ASSERT(documentWrapper->IsObject());    // TODO(bashi): Avoid using ForceSet(). When we use accessors to implement    // attributes, we may be able to remove updateDocumentProperty().    if (!v8CallBoolean(context->Global()->ForceSet(context, v8AtomicString(m_isolate, "document"), documentWrapper, static_cast<v8::PropertyAttribute>(v8::ReadOnly | v8::DontDelete))))        return;    // We also stash a reference to the document on the inner global object so that    // LocalDOMWindow objects we obtain from JavaScript references are guaranteed to have    // live Document objects.    V8HiddenValue::setHiddenValue(m_isolate, toInnerGlobalObject(context), V8HiddenValue::document(m_isolate), documentWrapper);}
开发者ID:alexanderbill,项目名称:blink-crosswalk,代码行数:31,


示例13: handleScope

void WindowProxy::disposeContext(GlobalDetachmentBehavior behavior){    if (!isContextInitialized())        return;    v8::HandleScope handleScope(m_isolate);    v8::Local<v8::Context> context = m_scriptState->context();    if (m_frame->isLocalFrame()) {        LocalFrame* frame = toLocalFrame(m_frame);        // The embedder could run arbitrary code in response to the willReleaseScriptContext callback, so all disposing should happen after it returns.        frame->loader().client()->willReleaseScriptContext(context, m_world->worldId());        InspectorInstrumentation::willReleaseScriptContext(frame, m_scriptState.get());    }    m_document.clear();    if (behavior == DetachGlobal)        m_scriptState->detachGlobalObject();    m_scriptState->disposePerContextData();    // It's likely that disposing the context has created a lot of    // garbage. Notify V8 about this so it'll have a chance of cleaning    // it up when idle.    V8GCForContextDispose::instance().notifyContextDisposed(m_frame->isMainFrame());}
开发者ID:alexanderbill,项目名称:blink-crosswalk,代码行数:26,


示例14: ASSERT

IntersectionObserver* IntersectionObserver::create(const IntersectionObserverInit& observerInit, IntersectionObserverCallback& callback, ExceptionState& exceptionState){    RefPtrWillBeRawPtr<Node> root = observerInit.root();    if (!root) {        // TODO(szager): Use Document instead of document element for implicit root. (crbug.com/570538)        ExecutionContext* context = callback.executionContext();        ASSERT(context->isDocument());        Frame* mainFrame = toDocument(context)->frame()->tree().top();        if (mainFrame && mainFrame->isLocalFrame())            root = toLocalFrame(mainFrame)->document();    }    if (!root) {        exceptionState.throwDOMException(HierarchyRequestError, "Unable to get root node in main frame to track.");        return nullptr;    }    Vector<Length> rootMargin;    if (observerInit.hasRootMargin())        parseRootMargin(observerInit.rootMargin(), rootMargin, exceptionState);    if (exceptionState.hadException())        return nullptr;    Vector<float> thresholds;    if (observerInit.hasThreshold())        parseThresholds(observerInit.threshold(), thresholds, exceptionState);    else        thresholds.append(0);    if (exceptionState.hadException())        return nullptr;    return new IntersectionObserver(callback, *root, rootMargin, thresholds);}
开发者ID:astojilj,项目名称:chromium-crosswalk,代码行数:32,


示例15: scope

void WindowProxy::updateDocumentProperty(){    if (!m_world->isMainWorld())        return;    if (m_frame->isRemoteFrame()) {        return;    }    ScriptState::Scope scope(m_scriptState.get());    v8::Local<v8::Context> context = m_scriptState->context();    LocalFrame* frame = toLocalFrame(m_frame);    v8::Local<v8::Value> documentWrapper = toV8(frame->document(), context->Global(), context->GetIsolate());    if (documentWrapper.IsEmpty())        return;    ASSERT(documentWrapper == m_document.newLocal(m_isolate) || m_document.isEmpty());    if (m_document.isEmpty())        updateDocumentWrapper(v8::Local<v8::Object>::Cast(documentWrapper));    checkDocumentWrapper(m_document.newLocal(m_isolate), frame->document());    ASSERT(documentWrapper->IsObject());    // TODO(jochen): Don't replace the accessor with a data value. We need a way to tell v8 that the accessor's return value won't change after this point.    if (!v8CallBoolean(context->Global()->ForceSet(context, v8AtomicString(m_isolate, "document"), documentWrapper, static_cast<v8::PropertyAttribute>(v8::ReadOnly | v8::DontDelete))))        return;}
开发者ID:endlessm,项目名称:chromium-browser,代码行数:25,


示例16: newRequest

void BeaconLoader::willSendRequest(WebURLLoader*, WebURLRequest& passedNewRequest, const WebURLResponse& passedRedirectResponse){    passedNewRequest.setAllowStoredCredentials(true);    ResourceRequest& newRequest(passedNewRequest.toMutableResourceRequest());    const ResourceResponse& redirectResponse(passedRedirectResponse.toResourceResponse());    ASSERT(!newRequest.isNull());    ASSERT(!redirectResponse.isNull());    String errorDescription;    StoredCredentials withCredentials = AllowStoredCredentials;    ResourceLoaderOptions options;    if (!CrossOriginAccessControl::handleRedirect(m_beaconOrigin.get(), newRequest, redirectResponse, withCredentials, options, errorDescription)) {        if (page() && page()->mainFrame()) {            if (page()->mainFrame()->isLocalFrame()) {                LocalFrame* localFrame = toLocalFrame(page()->mainFrame());                if (localFrame->document())                    localFrame->document()->addConsoleMessage(ConsoleMessage::create(JSMessageSource, ErrorMessageLevel, errorDescription));            }        }        // Cancel the load and self destruct.        dispose();        return;    }    // FIXME: http://crbug.com/427429 is needed to correctly propagate    // updates of Origin: following this successful redirect.}
开发者ID:smishenk,项目名称:chromium-crosswalk,代码行数:27,


示例17: effectiveFrameForFrameType

void MixedContentChecker::handleCertificateError(LocalFrame* frame, const ResourceResponse& response, WebURLRequest::FrameType frameType, WebURLRequest::RequestContext requestContext){    Frame* effectiveFrame = effectiveFrameForFrameType(frame, frameType);    if (frameType == WebURLRequest::FrameTypeTopLevel || !effectiveFrame)        return;    // TODO(estark): handle remote frames, perhaps by omitting security info when the effective frame is remote.    if (!effectiveFrame->isLocalFrame())        return;    LocalFrame* localEffectiveFrame = toLocalFrame(effectiveFrame);    // Use the current local frame's client; the embedder doesn't    // distinguish mixed content signals from different frames on the    // same page.    FrameLoaderClient* client = frame->loader().client();    ContextType contextType = MixedContentChecker::contextTypeFromContext(requestContext, effectiveFrame);    if (contextType == ContextTypeBlockable) {        client->didRunContentWithCertificateErrors(response.url(), response.getSecurityInfo(), mainResourceUrlForFrame(effectiveFrame), localEffectiveFrame->loader().documentLoader()->response().getSecurityInfo());    } else {        // contextTypeFromContext() never returns NotMixedContent (it        // computes the type of mixed content, given that the content is        // mixed).        ASSERT(contextType != ContextTypeNotMixedContent);        client->didDisplayContentWithCertificateErrors(response.url(), response.getSecurityInfo(), mainResourceUrlForFrame(effectiveFrame), localEffectiveFrame->loader().documentLoader()->response().getSecurityInfo());    }}
开发者ID:aobzhirov,项目名称:ChromiumGStreamerBackend,代码行数:27,


示例18: toLocalFrame

bool SVGImage::currentFrameHasSingleSecurityOrigin() const{    if (!m_page)        return true;    LocalFrame* frame = toLocalFrame(m_page->mainFrame());    RELEASE_ASSERT(frame->document()->loadEventFinished());    SVGSVGElement* rootElement = frame->document()->accessSVGExtensions().rootElement();    if (!rootElement)        return true;    // Don't allow foreignObject elements or images that are not known to be    // single-origin since these can leak cross-origin information.    for (Node* node = rootElement; node; node = ComposedTreeTraversal::next(*node)) {        if (isSVGForeignObjectElement(*node))            return false;        if (isSVGImageElement(*node)) {            if (!toSVGImageElement(*node).currentFrameHasSingleSecurityOrigin())                return false;        } else if (isSVGFEImageElement(*node)) {            if (!toSVGFEImageElement(*node).currentFrameHasSingleSecurityOrigin())                return false;        }    }    // Because SVG image rendering disallows external resources and links, these    // images effectively are restricted to a single security origin.    return true;}
开发者ID:howardroark2018,项目名称:chromium,代码行数:31,


示例19: toLocalFrame

inline void TextResourceDecoderBuilder::setupEncoding(TextResourceDecoder* decoder, Document* document){    LocalFrame* frame = document->frame();    LocalFrame* parentFrame = 0;    if (frame && frame->tree().parent() && frame->tree().parent()->isLocalFrame())        parentFrame = toLocalFrame(frame->tree().parent());    if (!m_encoding.isEmpty())        decoder->setEncoding(m_encoding.string(), m_encodingWasChosenByUser ? TextResourceDecoder::UserChosenEncoding : TextResourceDecoder::EncodingFromHTTPHeader);    // Set the hint encoding to the parent frame encoding only if    // the parent and the current frames share the security origin.    // We impose this condition because somebody can make a child frameg63    // containing a carefully crafted html/javascript in one encoding    // that can be mistaken for hintEncoding (or related encoding) by    // an auto detector. When interpreted in the latter, it could be    // an attack vector.    // FIXME: This might be too cautious for non-7bit-encodings and    // we may consider relaxing this later after testing.    if (frame && canReferToParentFrameEncoding(frame, parentFrame)) {        if (parentFrame->document()->encodingWasDetectedHeuristically())            decoder->setHintEncoding(parentFrame->document()->encoding());        if (m_encoding.isEmpty())            decoder->setEncoding(parentFrame->document()->inputEncoding().string(), TextResourceDecoder::EncodingFromParentFrame);    }}
开发者ID:Drakey83,项目名称:steamlink-sdk,代码行数:27,


示例20: toLocalFrame

ScopedPageLoadDeferrer::ScopedPageLoadDeferrer(Page* exclusion){    const HashSet<Page*>& pages = Page::ordinaryPages();    HashSet<Page*>::const_iterator end = pages.end();    for (HashSet<Page*>::const_iterator it = pages.begin(); it != end; ++it) {        Page* page = *it;        if (page == exclusion || page->defersLoading())            continue;        if (page->mainFrame()->isLocalFrame()) {            m_deferredFrames.append(page->deprecatedLocalMainFrame());            // Ensure that we notify the client if the initial empty document is accessed before            // showing anything modal, to prevent spoofs while the modal window or sheet is visible.            page->deprecatedLocalMainFrame()->loader().notifyIfInitialDocumentAccessed();        }        // This code is not logically part of load deferring, but we do not want JS code executed        // beneath modal windows or sheets, which is exactly when ScopedPageLoadDeferrer is used.        for (Frame* frame = page->mainFrame(); frame; frame = frame->tree().traverseNext()) {            if (frame->isLocalFrame())                toLocalFrame(frame)->document()->suspendScheduledTasks();        }    }    size_t count = m_deferredFrames.size();    for (size_t i = 0; i < count; ++i) {        if (Page* page = m_deferredFrames[i]->page())            page->setDefersLoading(true);    }}
开发者ID:venkatarajasekhar,项目名称:Qt,代码行数:32,



注:本文中的toLocalFrame函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


C++ toMapCoordinates函数代码示例
C++ toLayoutSize函数代码示例
万事OK自学网:51自学网_软件自学网_CAD自学网自学excel、自学PS、自学CAD、自学C语言、自学css3实例,是一个通过网络自主学习工作技能的自学平台,网友喜欢的软件自学网站。