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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 virtual bool hasFrameView() const; | 74 virtual bool hasFrameView() const; |
75 virtual void detachedFromParent(); | 75 virtual void detachedFromParent(); |
76 virtual void dispatchWillRequestAfterPreconnect(WebCore::ResourceRequest&); | 76 virtual void dispatchWillRequestAfterPreconnect(WebCore::ResourceRequest&); |
77 virtual void dispatchWillSendRequest(WebCore::DocumentLoader*, unsigned long
identifier, WebCore::ResourceRequest&, const WebCore::ResourceResponse& redirec
tResponse); | 77 virtual void dispatchWillSendRequest(WebCore::DocumentLoader*, unsigned long
identifier, WebCore::ResourceRequest&, const WebCore::ResourceResponse& redirec
tResponse); |
78 virtual void dispatchDidReceiveResponse(WebCore::DocumentLoader*, unsigned l
ong identifier, const WebCore::ResourceResponse&); | 78 virtual void dispatchDidReceiveResponse(WebCore::DocumentLoader*, unsigned l
ong identifier, const WebCore::ResourceResponse&); |
79 virtual void dispatchDidChangeResourcePriority(unsigned long identifier, Web
Core::ResourceLoadPriority); | 79 virtual void dispatchDidChangeResourcePriority(unsigned long identifier, Web
Core::ResourceLoadPriority); |
80 virtual void dispatchDidFinishLoading(WebCore::DocumentLoader*, unsigned lon
g identifier); | 80 virtual void dispatchDidFinishLoading(WebCore::DocumentLoader*, unsigned lon
g identifier); |
81 virtual void dispatchDidLoadResourceFromMemoryCache(WebCore::DocumentLoader*
, const WebCore::ResourceRequest&, const WebCore::ResourceResponse&, int length)
; | 81 virtual void dispatchDidLoadResourceFromMemoryCache(WebCore::DocumentLoader*
, const WebCore::ResourceRequest&, const WebCore::ResourceResponse&, int length)
; |
82 virtual void dispatchDidHandleOnloadEvents(); | 82 virtual void dispatchDidHandleOnloadEvents(); |
83 virtual void dispatchDidReceiveServerRedirectForProvisionalLoad(); | 83 virtual void dispatchDidReceiveServerRedirectForProvisionalLoad(); |
84 virtual void dispatchDidCompleteClientRedirect(const WebCore::KURL&); | |
85 virtual void dispatchDidNavigateWithinPage(); | 84 virtual void dispatchDidNavigateWithinPage(); |
86 virtual void dispatchDidChangeLocationWithinPage(); | 85 virtual void dispatchDidChangeLocationWithinPage(); |
87 virtual void dispatchWillClose(); | 86 virtual void dispatchWillClose(); |
88 virtual void dispatchDidStartProvisionalLoad(); | 87 virtual void dispatchDidStartProvisionalLoad(); |
89 virtual void dispatchDidReceiveTitle(const WebCore::StringWithDirection&); | 88 virtual void dispatchDidReceiveTitle(const WebCore::StringWithDirection&); |
90 virtual void dispatchDidChangeIcons(WebCore::IconType); | 89 virtual void dispatchDidChangeIcons(WebCore::IconType); |
91 virtual void dispatchDidCommitLoad(); | 90 virtual void dispatchDidCommitLoad(); |
92 virtual void dispatchDidFailProvisionalLoad(const WebCore::ResourceError&); | 91 virtual void dispatchDidFailProvisionalLoad(const WebCore::ResourceError&); |
93 virtual void dispatchDidFailLoad(const WebCore::ResourceError&); | 92 virtual void dispatchDidFailLoad(const WebCore::ResourceError&); |
94 virtual void dispatchDidFinishDocumentLoad(); | 93 virtual void dispatchDidFinishDocumentLoad(); |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 PassOwnPtr<WebPluginLoadObserver> pluginLoadObserver(); | 160 PassOwnPtr<WebPluginLoadObserver> pluginLoadObserver(); |
162 | 161 |
163 // The WebFrame that owns this object and manages its lifetime. Therefore, | 162 // The WebFrame that owns this object and manages its lifetime. Therefore, |
164 // the web frame object is guaranteed to exist. | 163 // the web frame object is guaranteed to exist. |
165 WebFrameImpl* m_webFrame; | 164 WebFrameImpl* m_webFrame; |
166 }; | 165 }; |
167 | 166 |
168 } // namespace WebKit | 167 } // namespace WebKit |
169 | 168 |
170 #endif | 169 #endif |
OLD | NEW |