OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef WEBKIT_GLUE_WEBFRAMELOADERCLIENT_IMPL_H__ | 5 #ifndef WEBKIT_GLUE_WEBFRAMELOADERCLIENT_IMPL_H__ |
6 #define WEBKIT_GLUE_WEBFRAMELOADERCLIENT_IMPL_H__ | 6 #define WEBKIT_GLUE_WEBFRAMELOADERCLIENT_IMPL_H__ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 | 64 |
65 virtual void dispatchWillSendRequest(WebCore::DocumentLoader*, unsigned long i
dentifier, WebCore::ResourceRequest&, const WebCore::ResourceResponse& redirectR
esponse); | 65 virtual void dispatchWillSendRequest(WebCore::DocumentLoader*, unsigned long i
dentifier, WebCore::ResourceRequest&, const WebCore::ResourceResponse& redirectR
esponse); |
66 virtual bool shouldUseCredentialStorage(WebCore::DocumentLoader*, unsigned lon
g identifier); | 66 virtual bool shouldUseCredentialStorage(WebCore::DocumentLoader*, unsigned lon
g identifier); |
67 virtual void dispatchDidReceiveAuthenticationChallenge(WebCore::DocumentLoader
*, unsigned long identifier, const WebCore::AuthenticationChallenge&); | 67 virtual void dispatchDidReceiveAuthenticationChallenge(WebCore::DocumentLoader
*, unsigned long identifier, const WebCore::AuthenticationChallenge&); |
68 virtual void dispatchDidCancelAuthenticationChallenge(WebCore::DocumentLoader*
, unsigned long identifier, const WebCore::AuthenticationChallenge&); | 68 virtual void dispatchDidCancelAuthenticationChallenge(WebCore::DocumentLoader*
, unsigned long identifier, const WebCore::AuthenticationChallenge&); |
69 virtual void dispatchDidReceiveResponse(WebCore::DocumentLoader*, unsigned lon
g identifier, const WebCore::ResourceResponse&); | 69 virtual void dispatchDidReceiveResponse(WebCore::DocumentLoader*, unsigned lon
g identifier, const WebCore::ResourceResponse&); |
70 virtual void dispatchDidReceiveContentLength(WebCore::DocumentLoader*, unsigne
d long identifier, int lengthReceived); | 70 virtual void dispatchDidReceiveContentLength(WebCore::DocumentLoader*, unsigne
d long identifier, int lengthReceived); |
71 virtual void dispatchDidFinishLoading(WebCore::DocumentLoader*, unsigned long
identifier); | 71 virtual void dispatchDidFinishLoading(WebCore::DocumentLoader*, unsigned long
identifier); |
72 virtual void dispatchDidFailLoading(WebCore::DocumentLoader*, unsigned long id
entifier, const WebCore::ResourceError&); | 72 virtual void dispatchDidFailLoading(WebCore::DocumentLoader*, unsigned long id
entifier, const WebCore::ResourceError&); |
73 virtual bool dispatchDidLoadResourceFromMemoryCache(WebCore::DocumentLoader*,
const WebCore::ResourceRequest&, const WebCore::ResourceResponse&, int length); | 73 virtual bool dispatchDidLoadResourceFromMemoryCache(WebCore::DocumentLoader*,
const WebCore::ResourceRequest&, const WebCore::ResourceResponse&, int length); |
| 74 virtual void dispatchDidLoadResourceByXMLHttpRequest(unsigned long identifier,
const WebCore::ScriptString&); |
74 | 75 |
75 virtual void dispatchDidHandleOnloadEvents(); | 76 virtual void dispatchDidHandleOnloadEvents(); |
76 virtual void dispatchDidReceiveServerRedirectForProvisionalLoad(); | 77 virtual void dispatchDidReceiveServerRedirectForProvisionalLoad(); |
77 virtual void dispatchDidCancelClientRedirect(); | 78 virtual void dispatchDidCancelClientRedirect(); |
78 virtual void dispatchWillPerformClientRedirect(const WebCore::KURL&, double in
terval, double fireDate); | 79 virtual void dispatchWillPerformClientRedirect(const WebCore::KURL&, double in
terval, double fireDate); |
79 virtual void dispatchDidChangeLocationWithinPage(); | 80 virtual void dispatchDidChangeLocationWithinPage(); |
80 virtual void dispatchWillClose(); | 81 virtual void dispatchWillClose(); |
81 virtual void dispatchDidReceiveIcon(); | 82 virtual void dispatchDidReceiveIcon(); |
82 virtual void dispatchDidStartProvisionalLoad(); | 83 virtual void dispatchDidStartProvisionalLoad(); |
83 virtual void dispatchDidReceiveTitle(const WebCore::String& title); | 84 virtual void dispatchDidReceiveTitle(const WebCore::String& title); |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 WebPluginContainer* plugin_widget_; | 251 WebPluginContainer* plugin_widget_; |
251 // Indicates if we need to send over the initial notification to the plugin | 252 // Indicates if we need to send over the initial notification to the plugin |
252 // which specifies that the plugin should be ready to accept data. | 253 // which specifies that the plugin should be ready to accept data. |
253 bool sent_initial_response_to_plugin_; | 254 bool sent_initial_response_to_plugin_; |
254 | 255 |
255 // The disposition to use for the next call to dispatchCreatePage. | 256 // The disposition to use for the next call to dispatchCreatePage. |
256 WindowOpenDisposition next_window_open_disposition_; | 257 WindowOpenDisposition next_window_open_disposition_; |
257 }; | 258 }; |
258 | 259 |
259 #endif // #ifndef WEBKIT_GLUE_WEBFRAMELOADERCLIENT_IMPL_H__ | 260 #endif // #ifndef WEBKIT_GLUE_WEBFRAMELOADERCLIENT_IMPL_H__ |
OLD | NEW |