OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved. |
3 * Copyright (C) 2011 Apple Inc. All rights reserved. | 3 * Copyright (C) 2011 Apple Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
7 * met: | 7 * met: |
8 * | 8 * |
9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 virtual void didDisplayInsecureContent(); | 118 virtual void didDisplayInsecureContent(); |
119 virtual void didRunInsecureContent(WebCore::SecurityOrigin*, const WebCore::
KURL& insecureURL); | 119 virtual void didRunInsecureContent(WebCore::SecurityOrigin*, const WebCore::
KURL& insecureURL); |
120 virtual void didDetectXSS(const WebCore::KURL&, bool didBlockEntirePage); | 120 virtual void didDetectXSS(const WebCore::KURL&, bool didBlockEntirePage); |
121 virtual WebCore::ResourceError cancelledError(const WebCore::ResourceRequest
&); | 121 virtual WebCore::ResourceError cancelledError(const WebCore::ResourceRequest
&); |
122 virtual WebCore::ResourceError cannotShowURLError(const WebCore::ResourceReq
uest&); | 122 virtual WebCore::ResourceError cannotShowURLError(const WebCore::ResourceReq
uest&); |
123 virtual WebCore::ResourceError interruptedForPolicyChangeError(const WebCore
::ResourceRequest&); | 123 virtual WebCore::ResourceError interruptedForPolicyChangeError(const WebCore
::ResourceRequest&); |
124 virtual WebCore::ResourceError cannotShowMIMETypeError(const WebCore::Resour
ceResponse&); | 124 virtual WebCore::ResourceError cannotShowMIMETypeError(const WebCore::Resour
ceResponse&); |
125 virtual WebCore::ResourceError fileDoesNotExistError(const WebCore::Resource
Response&); | 125 virtual WebCore::ResourceError fileDoesNotExistError(const WebCore::Resource
Response&); |
126 virtual WebCore::ResourceError pluginWillHandleLoadError(const WebCore::Reso
urceResponse&); | 126 virtual WebCore::ResourceError pluginWillHandleLoadError(const WebCore::Reso
urceResponse&); |
127 virtual bool shouldFallBack(const WebCore::ResourceError&); | 127 virtual bool shouldFallBack(const WebCore::ResourceError&); |
128 virtual bool canHandleRequest(const WebCore::ResourceRequest&) const; | |
129 virtual bool canShowMIMEType(const WTF::String& MIMEType) const; | 128 virtual bool canShowMIMEType(const WTF::String& MIMEType) const; |
130 virtual WTF::String generatedMIMETypeForURLScheme(const WTF::String& URLSche
me) const; | 129 virtual WTF::String generatedMIMETypeForURLScheme(const WTF::String& URLSche
me) const; |
131 virtual void didFinishLoad(); | 130 virtual void didFinishLoad(); |
132 virtual PassRefPtr<WebCore::DocumentLoader> createDocumentLoader( | 131 virtual PassRefPtr<WebCore::DocumentLoader> createDocumentLoader( |
133 const WebCore::ResourceRequest&, const WebCore::SubstituteData&); | 132 const WebCore::ResourceRequest&, const WebCore::SubstituteData&); |
134 virtual WTF::String userAgent(const WebCore::KURL&); | 133 virtual WTF::String userAgent(const WebCore::KURL&); |
135 virtual WTF::String doNotTrackValue(); | 134 virtual WTF::String doNotTrackValue(); |
136 virtual void transitionToCommittedForNewPage(); | 135 virtual void transitionToCommittedForNewPage(); |
137 virtual PassRefPtr<WebCore::Frame> createFrame( | 136 virtual PassRefPtr<WebCore::Frame> createFrame( |
138 const WebCore::KURL& url, const WTF::String& name, | 137 const WebCore::KURL& url, const WTF::String& name, |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
205 // which specifies that the plugin should be ready to accept data. | 204 // which specifies that the plugin should be ready to accept data. |
206 bool m_sentInitialResponseToPlugin; | 205 bool m_sentInitialResponseToPlugin; |
207 | 206 |
208 // The navigation policy to use for the next call to dispatchCreatePage. | 207 // The navigation policy to use for the next call to dispatchCreatePage. |
209 WebNavigationPolicy m_nextNavigationPolicy; | 208 WebNavigationPolicy m_nextNavigationPolicy; |
210 }; | 209 }; |
211 | 210 |
212 } // namespace WebKit | 211 } // namespace WebKit |
213 | 212 |
214 #endif | 213 #endif |
OLD | NEW |