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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 virtual WebCore::Frame* parent() const OVERRIDE; | 71 virtual WebCore::Frame* parent() const OVERRIDE; |
72 virtual WebCore::Frame* top() const OVERRIDE; | 72 virtual WebCore::Frame* top() const OVERRIDE; |
73 virtual WebCore::Frame* previousSibling() const OVERRIDE; | 73 virtual WebCore::Frame* previousSibling() const OVERRIDE; |
74 virtual WebCore::Frame* nextSibling() const OVERRIDE; | 74 virtual WebCore::Frame* nextSibling() const OVERRIDE; |
75 virtual WebCore::Frame* firstChild() const OVERRIDE; | 75 virtual WebCore::Frame* firstChild() const OVERRIDE; |
76 virtual WebCore::Frame* lastChild() const OVERRIDE; | 76 virtual WebCore::Frame* lastChild() const OVERRIDE; |
77 virtual void detachedFromParent() OVERRIDE; | 77 virtual void detachedFromParent() OVERRIDE; |
78 virtual void dispatchWillRequestAfterPreconnect(WebCore::ResourceRequest&) O
VERRIDE; | 78 virtual void dispatchWillRequestAfterPreconnect(WebCore::ResourceRequest&) O
VERRIDE; |
79 virtual void dispatchWillSendRequest(WebCore::DocumentLoader*, unsigned long
identifier, WebCore::ResourceRequest&, const WebCore::ResourceResponse& redirec
tResponse) OVERRIDE; | 79 virtual void dispatchWillSendRequest(WebCore::DocumentLoader*, unsigned long
identifier, WebCore::ResourceRequest&, const WebCore::ResourceResponse& redirec
tResponse) OVERRIDE; |
80 virtual void dispatchDidReceiveResponse(WebCore::DocumentLoader*, unsigned l
ong identifier, const WebCore::ResourceResponse&) OVERRIDE; | 80 virtual void dispatchDidReceiveResponse(WebCore::DocumentLoader*, unsigned l
ong identifier, const WebCore::ResourceResponse&) OVERRIDE; |
81 virtual void dispatchDidChangeResourcePriority(unsigned long identifier, Web
Core::ResourceLoadPriority) OVERRIDE; | 81 virtual void dispatchDidChangeResourcePriority(unsigned long identifier, Web
Core::ResourceLoadPriority, int intraPriorityValue) OVERRIDE; |
82 virtual void dispatchDidFinishLoading(WebCore::DocumentLoader*, unsigned lon
g identifier) OVERRIDE; | 82 virtual void dispatchDidFinishLoading(WebCore::DocumentLoader*, unsigned lon
g identifier) OVERRIDE; |
83 virtual void dispatchDidLoadResourceFromMemoryCache(const WebCore::ResourceR
equest&, const WebCore::ResourceResponse&) OVERRIDE; | 83 virtual void dispatchDidLoadResourceFromMemoryCache(const WebCore::ResourceR
equest&, const WebCore::ResourceResponse&) OVERRIDE; |
84 virtual void dispatchDidHandleOnloadEvents() OVERRIDE; | 84 virtual void dispatchDidHandleOnloadEvents() OVERRIDE; |
85 virtual void dispatchDidReceiveServerRedirectForProvisionalLoad() OVERRIDE; | 85 virtual void dispatchDidReceiveServerRedirectForProvisionalLoad() OVERRIDE; |
86 virtual void dispatchDidNavigateWithinPage(WebCore::HistoryItem*, WebCore::H
istoryCommitType) OVERRIDE; | 86 virtual void dispatchDidNavigateWithinPage(WebCore::HistoryItem*, WebCore::H
istoryCommitType) OVERRIDE; |
87 virtual void dispatchWillClose() OVERRIDE; | 87 virtual void dispatchWillClose() OVERRIDE; |
88 virtual void dispatchDidStartProvisionalLoad() OVERRIDE; | 88 virtual void dispatchDidStartProvisionalLoad() OVERRIDE; |
89 virtual void dispatchDidReceiveTitle(const String&) OVERRIDE; | 89 virtual void dispatchDidReceiveTitle(const String&) OVERRIDE; |
90 virtual void dispatchDidChangeIcons(WebCore::IconType) OVERRIDE; | 90 virtual void dispatchDidChangeIcons(WebCore::IconType) OVERRIDE; |
91 virtual void dispatchDidCommitLoad(WebCore::LocalFrame*, WebCore::HistoryIte
m*, WebCore::HistoryCommitType) OVERRIDE; | 91 virtual void dispatchDidCommitLoad(WebCore::LocalFrame*, WebCore::HistoryIte
m*, WebCore::HistoryCommitType) OVERRIDE; |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 // The WebFrame that owns this object and manages its lifetime. Therefore, | 166 // The WebFrame that owns this object and manages its lifetime. Therefore, |
167 // the web frame object is guaranteed to exist. | 167 // the web frame object is guaranteed to exist. |
168 WebFrameImpl* m_webFrame; | 168 WebFrameImpl* m_webFrame; |
169 }; | 169 }; |
170 | 170 |
171 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, WebCore::FrameLoaderClient, client, cli
ent->isFrameLoaderClientImpl(), client.isFrameLoaderClientImpl()); | 171 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, WebCore::FrameLoaderClient, client, cli
ent->isFrameLoaderClientImpl(), client.isFrameLoaderClientImpl()); |
172 | 172 |
173 } // namespace blink | 173 } // namespace blink |
174 | 174 |
175 #endif | 175 #endif |
OLD | NEW |