blob: 4896d62f45f1f81d90de7402e2097041a6eb064c [file] [log] [blame]
japhet@chromium.orgf1026912010-06-21 22:33:49 +00001/*
aestes@apple.com5e143732011-03-25 23:07:43 +00002 * Copyright (C) 2006, 2007, 2008, 2009, 2011 Apple Inc. All rights reserved.
japhet@chromium.orgf1026912010-06-21 22:33:49 +00003 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmobile.com/)
4 * Copyright (C) Research In Motion Limited 2009. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 *
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
mjs@apple.com92047332014-03-15 04:08:27 +000015 * 3. Neither the name of Apple Inc. ("Apple") nor the names of
japhet@chromium.orgf1026912010-06-21 22:33:49 +000016 * its contributors may be used to endorse or promote products derived
17 * from this software without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
20 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
23 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
26 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
commit-queue@webkit.org553e8d32016-11-12 08:57:21 +000031#pragma once
japhet@chromium.orgf1026912010-06-21 22:33:49 +000032
33#include "FrameLoaderTypes.h"
japhet@chromium.orgf1026912010-06-21 22:33:49 +000034#include <wtf/Forward.h>
japhet@chromium.orgf1026912010-06-21 22:33:49 +000035#include <wtf/Noncopyable.h>
weinig@apple.com3f5ab022012-09-06 17:36:48 +000036#include <wtf/text/WTFString.h>
japhet@chromium.orgf1026912010-06-21 22:33:49 +000037
38namespace WebCore {
39
eric@webkit.org4eeaef72010-09-02 02:11:45 +000040class Document;
japhet@chromium.orgf1026912010-06-21 22:33:49 +000041class Frame;
42class FrameLoaderClient;
43class HTMLAppletElement;
44class HTMLFrameOwnerElement;
weinig@apple.comf6e717b2013-11-08 23:23:16 +000045class HTMLMediaElement;
eric@webkit.org1402eb42010-09-02 09:10:21 +000046class HTMLPlugInImageElement;
japhet@chromium.orgf1026912010-06-21 22:33:49 +000047class IntSize;
darin@apple.com5ffbb5c2013-09-27 16:39:41 +000048class URL;
japhet@chromium.orgf1026912010-06-21 22:33:49 +000049class Widget;
50
51// This is a slight misnomer. It handles the higher level logic of loading both subframes and plugins.
ossy@webkit.org95c1bc42011-01-20 16:30:54 +000052class SubframeLoader {
cdumez@apple.coma738a882016-04-19 18:39:09 +000053 WTF_MAKE_NONCOPYABLE(SubframeLoader); WTF_MAKE_FAST_ALLOCATED;
japhet@chromium.orgf1026912010-06-21 22:33:49 +000054public:
akling@apple.comad246c02013-10-04 22:49:40 +000055 explicit SubframeLoader(Frame&);
japhet@chromium.orgf1026912010-06-21 22:33:49 +000056
57 void clear();
58
mrowe@apple.combf5eaa62014-04-03 00:51:04 +000059 bool requestFrame(HTMLFrameOwnerElement&, const String& url, const AtomicString& frameName, LockHistory = LockHistory::Yes, LockBackForwardList = LockBackForwardList::Yes);
akling@apple.com2cbd1e92013-11-05 09:29:50 +000060 bool requestObject(HTMLPlugInImageElement&, const String& url, const AtomicString& frameName,
japhet@chromium.orgf1026912010-06-21 22:33:49 +000061 const String& serviceType, const Vector<String>& paramNames, const Vector<String>& paramValues);
62
darin@apple.comc04189e2017-01-18 05:17:17 +000063 RefPtr<Widget> createJavaAppletWidget(const IntSize&, HTMLAppletElement&, const Vector<String>& paramNames, const Vector<String>& paramValues);
japhet@chromium.orgf1026912010-06-21 22:33:49 +000064
andersca@apple.com0ea9a032015-08-04 21:41:02 +000065 WEBCORE_EXPORT bool allowPlugins();
japhet@chromium.orgf1026912010-06-21 22:33:49 +000066
67 bool containsPlugins() const { return m_containsPlugins; }
dpranke@chromium.org9a91c972010-09-10 07:48:20 +000068
andersca@apple.com589100e2015-10-12 17:25:37 +000069 bool resourceWillUsePlugin(const String& url, const String& mimeType);
japhet@chromium.orgf1026912010-06-21 22:33:49 +000070
71private:
weinig@apple.comf6e717b2013-11-08 23:23:16 +000072 bool requestPlugin(HTMLPlugInImageElement&, const URL&, const String& serviceType, const Vector<String>& paramNames, const Vector<String>& paramValues, bool useFallback);
mrowe@apple.combf5eaa62014-04-03 00:51:04 +000073 Frame* loadOrRedirectSubframe(HTMLFrameOwnerElement&, const URL&, const AtomicString& frameName, LockHistory, LockBackForwardList);
weinig@apple.comf6e717b2013-11-08 23:23:16 +000074 Frame* loadSubframe(HTMLFrameOwnerElement&, const URL&, const String& name, const String& referrer);
75 bool loadPlugin(HTMLPlugInImageElement&, const URL&, const String& mimeType, const Vector<String>& paramNames, const Vector<String>& paramValues, bool useFallback);
japhet@chromium.orgf1026912010-06-21 22:33:49 +000076
andersca@apple.com589100e2015-10-12 17:25:37 +000077 bool shouldUsePlugin(const URL&, const String& mimeType, bool hasFallback, bool& useFallback);
dbates@webkit.orga3216392016-07-22 20:33:11 +000078 bool pluginIsLoadable(const URL&, const String& mimeType);
japhet@chromium.orgf1026912010-06-21 22:33:49 +000079
darin@apple.comc04189e2017-01-18 05:17:17 +000080 URL completeURL(const String&) const;
eric@webkit.org4eeaef72010-09-02 02:11:45 +000081
jiewen_tan@apple.com5c61787d72016-05-12 23:22:47 +000082 bool shouldConvertInvalidURLsToBlank() const;
83
japhet@chromium.orgf1026912010-06-21 22:33:49 +000084 bool m_containsPlugins;
akling@apple.comad246c02013-10-04 22:49:40 +000085 Frame& m_frame;
japhet@chromium.orgf1026912010-06-21 22:33:49 +000086};
87
88} // namespace WebCore