blob: 12006611f407b5c13a01df20ef37c417d37e448b [file] [log] [blame]
Ben Murdoche69819b2013-07-17 14:56:49 +01001/*
2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met:
7 *
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following disclaimer
12 * in the documentation and/or other materials provided with the
13 * distribution.
14 * * Neither the name of Google Inc. nor the names of its
15 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
31#ifndef WebDataSourceImpl_h
32#define WebDataSourceImpl_h
33
34#include "WebDataSource.h"
35#include "WebPluginLoadObserver.h"
36#include "core/loader/DocumentLoader.h"
Torne (Richard Coles)19cde672013-11-06 12:28:04 +000037#include "platform/exported/WrappedResourceRequest.h"
38#include "platform/exported/WrappedResourceResponse.h"
Torne (Richard Coles)51b29062013-11-28 11:56:03 +000039#include "platform/weborigin/KURL.h"
Ben Murdoche69819b2013-07-17 14:56:49 +010040#include "wtf/OwnPtr.h"
41#include "wtf/PassOwnPtr.h"
42#include "wtf/Vector.h"
43
Torne (Richard Coles)51b29062013-11-28 11:56:03 +000044namespace blink {
Ben Murdoche69819b2013-07-17 14:56:49 +010045
46class WebPluginLoadObserver;
47
Torne (Richard Coles)09380292014-02-21 12:17:33 +000048class WebDataSourceImpl FINAL : public WebCore::DocumentLoader, public WebDataSource {
Ben Murdoche69819b2013-07-17 14:56:49 +010049public:
Torne (Richard Coles)d5428f32014-03-18 10:21:16 +000050 static PassRefPtr<WebDataSourceImpl> create(WebCore::LocalFrame*, const WebCore::ResourceRequest&, const WebCore::SubstituteData&);
Ben Murdoche69819b2013-07-17 14:56:49 +010051
52 static WebDataSourceImpl* fromDocumentLoader(WebCore::DocumentLoader* loader)
53 {
54 return static_cast<WebDataSourceImpl*>(loader);
55 }
56
57 // WebDataSource methods:
Torne (Richard Coles)09380292014-02-21 12:17:33 +000058 virtual const WebURLRequest& originalRequest() const OVERRIDE;
59 virtual const WebURLRequest& request() const OVERRIDE;
60 virtual const WebURLResponse& response() const OVERRIDE;
61 virtual bool hasUnreachableURL() const OVERRIDE;
62 virtual WebURL unreachableURL() const OVERRIDE;
63 virtual void appendRedirect(const WebURL&) OVERRIDE;
64 virtual void redirectChain(WebVector<WebURL>&) const OVERRIDE;
65 virtual bool isClientRedirect() const OVERRIDE;
66 virtual bool replacesCurrentHistoryItem() const OVERRIDE;
67 virtual WebNavigationType navigationType() const OVERRIDE;
68 virtual double triggeringEventTime() const OVERRIDE;
69 virtual ExtraData* extraData() const OVERRIDE;
70 virtual void setExtraData(ExtraData*) OVERRIDE;
Torne (Richard Coles)09380292014-02-21 12:17:33 +000071 virtual void setNavigationStartTime(double) OVERRIDE;
Ben Murdoche69819b2013-07-17 14:56:49 +010072
73 static WebNavigationType toWebNavigationType(WebCore::NavigationType type);
74
75 PassOwnPtr<WebPluginLoadObserver> releasePluginLoadObserver() { return m_pluginLoadObserver.release(); }
76 static void setNextPluginLoadObserver(PassOwnPtr<WebPluginLoadObserver>);
77
78private:
Torne (Richard Coles)d5428f32014-03-18 10:21:16 +000079 WebDataSourceImpl(WebCore::LocalFrame*, const WebCore::ResourceRequest&, const WebCore::SubstituteData&);
Torne (Richard Coles)09380292014-02-21 12:17:33 +000080 virtual ~WebDataSourceImpl();
Ben Murdoche69819b2013-07-17 14:56:49 +010081
82 // Mutable because the const getters will magically sync these to the
83 // latest version from WebKit.
84 mutable WrappedResourceRequest m_originalRequestWrapper;
85 mutable WrappedResourceRequest m_requestWrapper;
86 mutable WrappedResourceResponse m_responseWrapper;
87
88 OwnPtr<ExtraData> m_extraData;
89 OwnPtr<WebPluginLoadObserver> m_pluginLoadObserver;
90};
91
Torne (Richard Coles)51b29062013-11-28 11:56:03 +000092} // namespace blink
Ben Murdoche69819b2013-07-17 14:56:49 +010093
94#endif // WebDataSourceImpl_h