| Index: sky/engine/web/FrameLoaderClientImpl.cpp
|
| diff --git a/sky/engine/web/FrameLoaderClientImpl.cpp b/sky/engine/web/FrameLoaderClientImpl.cpp
|
| deleted file mode 100644
|
| index 838f20b8488372a73e233767bde6b5bbc0d13caa..0000000000000000000000000000000000000000
|
| --- a/sky/engine/web/FrameLoaderClientImpl.cpp
|
| +++ /dev/null
|
| @@ -1,259 +0,0 @@
|
| -/*
|
| - * Copyright (C) 2009, 2012 Google Inc. All rights reserved.
|
| - * Copyright (C) 2011 Apple Inc. All rights reserved.
|
| - *
|
| - * Redistribution and use in source and binary forms, with or without
|
| - * modification, are permitted provided that the following conditions are
|
| - * met:
|
| - *
|
| - * * Redistributions of source code must retain the above copyright
|
| - * notice, this list of conditions and the following disclaimer.
|
| - * * Redistributions in binary form must reproduce the above
|
| - * copyright notice, this list of conditions and the following disclaimer
|
| - * in the documentation and/or other materials provided with the
|
| - * distribution.
|
| - * * Neither the name of Google Inc. nor the names of its
|
| - * contributors may be used to endorse or promote products derived from
|
| - * this software without specific prior written permission.
|
| - *
|
| - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
| - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
| - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
| - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
| - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
| - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
| - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
| - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
| - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
| - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
| - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| - */
|
| -
|
| -#include "sky/engine/web/FrameLoaderClientImpl.h"
|
| -
|
| -#include "gen/sky/platform/RuntimeEnabledFeatures.h"
|
| -#include "sky/engine/core/dom/Document.h"
|
| -#include "sky/engine/core/frame/FrameView.h"
|
| -#include "sky/engine/core/frame/Settings.h"
|
| -#include "sky/engine/core/html/HTMLIFrameElement.h"
|
| -#include "sky/engine/core/page/EventHandler.h"
|
| -#include "sky/engine/core/page/Page.h"
|
| -#include "sky/engine/core/rendering/HitTestResult.h"
|
| -#include "sky/engine/platform/MIMETypeRegistry.h"
|
| -#include "sky/engine/platform/exported/WrappedResourceRequest.h"
|
| -#include "sky/engine/platform/exported/WrappedResourceResponse.h"
|
| -#include "sky/engine/platform/network/HTTPParsers.h"
|
| -#include "sky/engine/public/platform/Platform.h"
|
| -#include "sky/engine/public/platform/WebURL.h"
|
| -#include "sky/engine/public/platform/WebURLError.h"
|
| -#include "sky/engine/public/platform/WebVector.h"
|
| -#include "sky/engine/public/web/WebCachedURLRequest.h"
|
| -#include "sky/engine/public/web/WebDocument.h"
|
| -#include "sky/engine/public/web/WebFrameClient.h"
|
| -#include "sky/engine/public/web/WebNode.h"
|
| -#include "sky/engine/public/web/WebViewClient.h"
|
| -#include "sky/engine/web/WebLocalFrameImpl.h"
|
| -#include "sky/engine/web/WebViewImpl.h"
|
| -#include "sky/engine/wtf/StringExtras.h"
|
| -#include "sky/engine/wtf/text/CString.h"
|
| -#include "sky/engine/wtf/text/WTFString.h"
|
| -
|
| -namespace blink {
|
| -
|
| -FrameLoaderClientImpl::FrameLoaderClientImpl(WebLocalFrameImpl* frame)
|
| - : m_webFrame(frame)
|
| -{
|
| -}
|
| -
|
| -FrameLoaderClientImpl::~FrameLoaderClientImpl()
|
| -{
|
| -}
|
| -
|
| -void FrameLoaderClientImpl::documentElementAvailable()
|
| -{
|
| - if (m_webFrame->client())
|
| - m_webFrame->client()->didCreateDocumentElement(m_webFrame);
|
| -}
|
| -
|
| -void FrameLoaderClientImpl::detachedFromParent()
|
| -{
|
| - // Alert the client that the frame is being detached. This is the last
|
| - // chance we have to communicate with the client.
|
| - RefPtr<WebLocalFrameImpl> protector(m_webFrame);
|
| -
|
| - WebFrameClient* client = m_webFrame->client();
|
| - if (!client)
|
| - return;
|
| -
|
| - // Signal that no further communication with WebFrameClient should take
|
| - // place at this point since we are no longer associated with the Page.
|
| - m_webFrame->setClient(0);
|
| -
|
| - client->frameDetached(m_webFrame);
|
| - // Clear our reference to LocalFrame at the very end, in case the client
|
| - // refers to it.
|
| - m_webFrame->setCoreFrame(nullptr);
|
| -}
|
| -
|
| -void FrameLoaderClientImpl::dispatchWillSendRequest(
|
| - Document*, unsigned long identifier, ResourceRequest& request,
|
| - const ResourceResponse& redirectResponse)
|
| -{
|
| - // Give the WebFrameClient a crack at the request.
|
| - if (m_webFrame->client()) {
|
| - WrappedResourceRequest webreq(request);
|
| - WrappedResourceResponse webresp(redirectResponse);
|
| - m_webFrame->client()->willSendRequest(
|
| - m_webFrame, identifier, webreq, webresp);
|
| - }
|
| -}
|
| -
|
| -void FrameLoaderClientImpl::dispatchDidReceiveResponse(Document*,
|
| - unsigned long identifier,
|
| - const ResourceResponse& response)
|
| -{
|
| - if (m_webFrame->client()) {
|
| - WrappedResourceResponse webresp(response);
|
| - m_webFrame->client()->didReceiveResponse(m_webFrame, identifier, webresp);
|
| - }
|
| -}
|
| -
|
| -void FrameLoaderClientImpl::dispatchDidChangeResourcePriority(unsigned long identifier, ResourceLoadPriority priority, int intraPriorityValue)
|
| -{
|
| - if (m_webFrame->client())
|
| - m_webFrame->client()->didChangeResourcePriority(m_webFrame, identifier, static_cast<WebURLRequest::Priority>(priority), intraPriorityValue);
|
| -}
|
| -
|
| -// Called when a particular resource load completes
|
| -void FrameLoaderClientImpl::dispatchDidFinishLoading(Document*,
|
| - unsigned long identifier)
|
| -{
|
| - if (m_webFrame->client())
|
| - m_webFrame->client()->didFinishResourceLoad(m_webFrame, identifier);
|
| -}
|
| -
|
| -void FrameLoaderClientImpl::dispatchDidLoadResourceFromMemoryCache(const ResourceRequest& request, const ResourceResponse& response)
|
| -{
|
| - if (m_webFrame->client())
|
| - m_webFrame->client()->didLoadResourceFromMemoryCache(m_webFrame, WrappedResourceRequest(request), WrappedResourceResponse(response));
|
| -}
|
| -
|
| -void FrameLoaderClientImpl::dispatchDidHandleOnloadEvents()
|
| -{
|
| - if (m_webFrame->client())
|
| - m_webFrame->client()->didHandleOnloadEvents(m_webFrame);
|
| -}
|
| -
|
| -void FrameLoaderClientImpl::dispatchWillClose()
|
| -{
|
| - if (m_webFrame->client())
|
| - m_webFrame->client()->willClose(m_webFrame);
|
| -}
|
| -
|
| -void FrameLoaderClientImpl::dispatchDidReceiveTitle(const String& title)
|
| -{
|
| - if (m_webFrame->client())
|
| - m_webFrame->client()->didReceiveTitle(m_webFrame, title, WebTextDirectionLeftToRight);
|
| -}
|
| -
|
| -void FrameLoaderClientImpl::dispatchDidFailLoad(const ResourceError& error)
|
| -{
|
| - m_webFrame->didFail(error);
|
| -}
|
| -
|
| -NavigationPolicy FrameLoaderClientImpl::decidePolicyForNavigation(const ResourceRequest& request, Document*, NavigationPolicy policy, bool isTransitionNavigation)
|
| -{
|
| - if (!m_webFrame->client())
|
| - return NavigationPolicyIgnore;
|
| -
|
| - WrappedResourceRequest wrappedResourceRequest(request);
|
| - WebFrameClient::NavigationPolicyInfo navigationInfo(wrappedResourceRequest);
|
| - navigationInfo.frame = m_webFrame;
|
| - navigationInfo.defaultPolicy = static_cast<WebNavigationPolicy>(policy);
|
| - navigationInfo.isTransitionNavigation = isTransitionNavigation;
|
| -
|
| - WebNavigationPolicy webPolicy = m_webFrame->client()->decidePolicyForNavigation(navigationInfo);
|
| - return static_cast<NavigationPolicy>(webPolicy);
|
| -}
|
| -
|
| -void FrameLoaderClientImpl::dispatchAddNavigationTransitionData(const String& allowedDestinationOrigin, const String& selector, const String& markup)
|
| -{
|
| - if (m_webFrame->client())
|
| - m_webFrame->client()->addNavigationTransitionData(allowedDestinationOrigin, selector, markup);
|
| -}
|
| -
|
| -void FrameLoaderClientImpl::dispatchWillRequestResource(FetchRequest* request)
|
| -{
|
| - if (m_webFrame->client()) {
|
| - WebCachedURLRequest urlRequest(request);
|
| - m_webFrame->client()->willRequestResource(m_webFrame, urlRequest);
|
| - }
|
| -}
|
| -
|
| -void FrameLoaderClientImpl::didStartLoading(LoadStartType loadStartType)
|
| -{
|
| - if (m_webFrame->client())
|
| - m_webFrame->client()->didStartLoading(loadStartType == NavigationToDifferentDocument);
|
| -}
|
| -
|
| -void FrameLoaderClientImpl::progressEstimateChanged(double progressEstimate)
|
| -{
|
| - if (m_webFrame->client())
|
| - m_webFrame->client()->didChangeLoadProgress(progressEstimate);
|
| -}
|
| -
|
| -void FrameLoaderClientImpl::didStopLoading()
|
| -{
|
| - if (m_webFrame->client())
|
| - m_webFrame->client()->didStopLoading();
|
| -}
|
| -
|
| -void FrameLoaderClientImpl::loadURLExternally(const ResourceRequest& request, NavigationPolicy policy, const String& suggestedName)
|
| -{
|
| - if (m_webFrame->client()) {
|
| - ASSERT(m_webFrame->frame()->document());
|
| - WrappedResourceRequest webreq(request);
|
| - m_webFrame->client()->loadURLExternally(
|
| - m_webFrame, webreq, static_cast<WebNavigationPolicy>(policy), suggestedName);
|
| - }
|
| -}
|
| -
|
| -mojo::View* FrameLoaderClientImpl::createChildFrame()
|
| -{
|
| - if (m_webFrame->client())
|
| - return m_webFrame->client()->createChildFrame();
|
| - ASSERT_NOT_REACHED();
|
| - return nullptr;
|
| -}
|
| -
|
| -void FrameLoaderClientImpl::selectorMatchChanged(const Vector<String>& addedSelectors, const Vector<String>& removedSelectors)
|
| -{
|
| - if (WebFrameClient* client = m_webFrame->client())
|
| - client->didMatchCSS(m_webFrame, WebVector<WebString>(addedSelectors), WebVector<WebString>(removedSelectors));
|
| -}
|
| -
|
| -// Called when the FrameLoader goes into a state in which a new page load
|
| -// will occur.
|
| -void FrameLoaderClientImpl::transitionToCommittedForNewPage()
|
| -{
|
| - m_webFrame->createFrameView();
|
| -}
|
| -
|
| -void FrameLoaderClientImpl::didLoseWebGLContext(int arbRobustnessContextLostReason)
|
| -{
|
| - if (m_webFrame->client())
|
| - m_webFrame->client()->didLoseWebGLContext(m_webFrame, arbRobustnessContextLostReason);
|
| -}
|
| -
|
| -void FrameLoaderClientImpl::dispatchDidChangeManifest()
|
| -{
|
| - if (m_webFrame->client())
|
| - m_webFrame->client()->didChangeManifest(m_webFrame);
|
| -}
|
| -
|
| -void FrameLoaderClientImpl::didCreateIsolate(Dart_Isolate isolate) {
|
| - if (m_webFrame->client())
|
| - m_webFrame->client()->didCreateIsolate(m_webFrame, isolate);
|
| -}
|
| -
|
| -} // namespace blink
|
|
|