japhet@chromium.org | f102691 | 2010-06-21 22:33:49 +0000 | [diff] [blame] | 1 | /* |
aestes@apple.com | 5e14373 | 2011-03-25 23:07:43 +0000 | [diff] [blame] | 2 | * Copyright (C) 2006, 2007, 2008, 2009, 2011 Apple Inc. All rights reserved. |
japhet@chromium.org | f102691 | 2010-06-21 22:33:49 +0000 | [diff] [blame] | 3 | * 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.com | 9204733 | 2014-03-15 04:08:27 +0000 | [diff] [blame] | 15 | * 3. Neither the name of Apple Inc. ("Apple") nor the names of |
japhet@chromium.org | f102691 | 2010-06-21 22:33:49 +0000 | [diff] [blame] | 16 | * 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.org | 553e8d3 | 2016-11-12 08:57:21 +0000 | [diff] [blame] | 31 | #pragma once |
japhet@chromium.org | f102691 | 2010-06-21 22:33:49 +0000 | [diff] [blame] | 32 | |
| 33 | #include "FrameLoaderTypes.h" |
japhet@chromium.org | f102691 | 2010-06-21 22:33:49 +0000 | [diff] [blame] | 34 | #include <wtf/Forward.h> |
japhet@chromium.org | f102691 | 2010-06-21 22:33:49 +0000 | [diff] [blame] | 35 | #include <wtf/Noncopyable.h> |
weinig@apple.com | 3f5ab02 | 2012-09-06 17:36:48 +0000 | [diff] [blame] | 36 | #include <wtf/text/WTFString.h> |
japhet@chromium.org | f102691 | 2010-06-21 22:33:49 +0000 | [diff] [blame] | 37 | |
| 38 | namespace WebCore { |
| 39 | |
eric@webkit.org | 4eeaef7 | 2010-09-02 02:11:45 +0000 | [diff] [blame] | 40 | class Document; |
japhet@chromium.org | f102691 | 2010-06-21 22:33:49 +0000 | [diff] [blame] | 41 | class Frame; |
| 42 | class FrameLoaderClient; |
| 43 | class HTMLAppletElement; |
| 44 | class HTMLFrameOwnerElement; |
weinig@apple.com | f6e717b | 2013-11-08 23:23:16 +0000 | [diff] [blame] | 45 | class HTMLMediaElement; |
eric@webkit.org | 1402eb4 | 2010-09-02 09:10:21 +0000 | [diff] [blame] | 46 | class HTMLPlugInImageElement; |
japhet@chromium.org | f102691 | 2010-06-21 22:33:49 +0000 | [diff] [blame] | 47 | class IntSize; |
darin@apple.com | 5ffbb5c | 2013-09-27 16:39:41 +0000 | [diff] [blame] | 48 | class URL; |
japhet@chromium.org | f102691 | 2010-06-21 22:33:49 +0000 | [diff] [blame] | 49 | class Widget; |
| 50 | |
| 51 | // This is a slight misnomer. It handles the higher level logic of loading both subframes and plugins. |
ossy@webkit.org | 95c1bc4 | 2011-01-20 16:30:54 +0000 | [diff] [blame] | 52 | class SubframeLoader { |
cdumez@apple.com | a738a88 | 2016-04-19 18:39:09 +0000 | [diff] [blame] | 53 | WTF_MAKE_NONCOPYABLE(SubframeLoader); WTF_MAKE_FAST_ALLOCATED; |
japhet@chromium.org | f102691 | 2010-06-21 22:33:49 +0000 | [diff] [blame] | 54 | public: |
akling@apple.com | ad246c0 | 2013-10-04 22:49:40 +0000 | [diff] [blame] | 55 | explicit SubframeLoader(Frame&); |
japhet@chromium.org | f102691 | 2010-06-21 22:33:49 +0000 | [diff] [blame] | 56 | |
| 57 | void clear(); |
| 58 | |
mrowe@apple.com | bf5eaa6 | 2014-04-03 00:51:04 +0000 | [diff] [blame] | 59 | bool requestFrame(HTMLFrameOwnerElement&, const String& url, const AtomicString& frameName, LockHistory = LockHistory::Yes, LockBackForwardList = LockBackForwardList::Yes); |
akling@apple.com | 2cbd1e9 | 2013-11-05 09:29:50 +0000 | [diff] [blame] | 60 | bool requestObject(HTMLPlugInImageElement&, const String& url, const AtomicString& frameName, |
japhet@chromium.org | f102691 | 2010-06-21 22:33:49 +0000 | [diff] [blame] | 61 | const String& serviceType, const Vector<String>& paramNames, const Vector<String>& paramValues); |
| 62 | |
darin@apple.com | c04189e | 2017-01-18 05:17:17 +0000 | [diff] [blame] | 63 | RefPtr<Widget> createJavaAppletWidget(const IntSize&, HTMLAppletElement&, const Vector<String>& paramNames, const Vector<String>& paramValues); |
japhet@chromium.org | f102691 | 2010-06-21 22:33:49 +0000 | [diff] [blame] | 64 | |
andersca@apple.com | 0ea9a03 | 2015-08-04 21:41:02 +0000 | [diff] [blame] | 65 | WEBCORE_EXPORT bool allowPlugins(); |
japhet@chromium.org | f102691 | 2010-06-21 22:33:49 +0000 | [diff] [blame] | 66 | |
| 67 | bool containsPlugins() const { return m_containsPlugins; } |
dpranke@chromium.org | 9a91c97 | 2010-09-10 07:48:20 +0000 | [diff] [blame] | 68 | |
andersca@apple.com | 589100e | 2015-10-12 17:25:37 +0000 | [diff] [blame] | 69 | bool resourceWillUsePlugin(const String& url, const String& mimeType); |
japhet@chromium.org | f102691 | 2010-06-21 22:33:49 +0000 | [diff] [blame] | 70 | |
| 71 | private: |
weinig@apple.com | f6e717b | 2013-11-08 23:23:16 +0000 | [diff] [blame] | 72 | bool requestPlugin(HTMLPlugInImageElement&, const URL&, const String& serviceType, const Vector<String>& paramNames, const Vector<String>& paramValues, bool useFallback); |
mrowe@apple.com | bf5eaa6 | 2014-04-03 00:51:04 +0000 | [diff] [blame] | 73 | Frame* loadOrRedirectSubframe(HTMLFrameOwnerElement&, const URL&, const AtomicString& frameName, LockHistory, LockBackForwardList); |
weinig@apple.com | f6e717b | 2013-11-08 23:23:16 +0000 | [diff] [blame] | 74 | 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.org | f102691 | 2010-06-21 22:33:49 +0000 | [diff] [blame] | 76 | |
andersca@apple.com | 589100e | 2015-10-12 17:25:37 +0000 | [diff] [blame] | 77 | bool shouldUsePlugin(const URL&, const String& mimeType, bool hasFallback, bool& useFallback); |
dbates@webkit.org | a321639 | 2016-07-22 20:33:11 +0000 | [diff] [blame] | 78 | bool pluginIsLoadable(const URL&, const String& mimeType); |
japhet@chromium.org | f102691 | 2010-06-21 22:33:49 +0000 | [diff] [blame] | 79 | |
darin@apple.com | c04189e | 2017-01-18 05:17:17 +0000 | [diff] [blame] | 80 | URL completeURL(const String&) const; |
eric@webkit.org | 4eeaef7 | 2010-09-02 02:11:45 +0000 | [diff] [blame] | 81 | |
jiewen_tan@apple.com | 5c61787d7 | 2016-05-12 23:22:47 +0000 | [diff] [blame] | 82 | bool shouldConvertInvalidURLsToBlank() const; |
| 83 | |
japhet@chromium.org | f102691 | 2010-06-21 22:33:49 +0000 | [diff] [blame] | 84 | bool m_containsPlugins; |
akling@apple.com | ad246c0 | 2013-10-04 22:49:40 +0000 | [diff] [blame] | 85 | Frame& m_frame; |
japhet@chromium.org | f102691 | 2010-06-21 22:33:49 +0000 | [diff] [blame] | 86 | }; |
| 87 | |
| 88 | } // namespace WebCore |