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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 Frame* opener() const override; | 77 Frame* opener() const override; |
78 void setOpener(Frame*) override; | 78 void setOpener(Frame*) override; |
79 Frame* parent() const override; | 79 Frame* parent() const override; |
80 Frame* top() const override; | 80 Frame* top() const override; |
81 Frame* previousSibling() const override; | 81 Frame* previousSibling() const override; |
82 Frame* nextSibling() const override; | 82 Frame* nextSibling() const override; |
83 Frame* firstChild() const override; | 83 Frame* firstChild() const override; |
84 Frame* lastChild() const override; | 84 Frame* lastChild() const override; |
85 void willBeDetached() override; | 85 void willBeDetached() override; |
86 void detached(FrameDetachType) override; | 86 void detached(FrameDetachType) override; |
87 void dispatchWillSendRequest(DocumentLoader*, unsigned long identifier, Reso
urceRequest&, const ResourceResponse& redirectResponse) override; | 87 void dispatchWillSendRequest(ResourceRequest&) override; |
88 void dispatchDidReceiveResponse(DocumentLoader*, unsigned long identifier, c
onst ResourceResponse&) override; | 88 void dispatchDidReceiveResponse(const ResourceResponse&) override; |
89 void dispatchDidChangeResourcePriority(unsigned long identifier, ResourceLoa
dPriority, int intraPriorityValue) override; | |
90 void dispatchDidFinishLoading(DocumentLoader*, unsigned long identifier) ove
rride; | |
91 void dispatchDidLoadResourceFromMemoryCache(const ResourceRequest&, const Re
sourceResponse&) override; | 89 void dispatchDidLoadResourceFromMemoryCache(const ResourceRequest&, const Re
sourceResponse&) override; |
92 void dispatchDidHandleOnloadEvents() override; | 90 void dispatchDidHandleOnloadEvents() override; |
93 void dispatchDidReceiveServerRedirectForProvisionalLoad() override; | 91 void dispatchDidReceiveServerRedirectForProvisionalLoad() override; |
94 void dispatchDidNavigateWithinPage(HistoryItem*, HistoryCommitType, bool con
tentInitiated) override; | 92 void dispatchDidNavigateWithinPage(HistoryItem*, HistoryCommitType, bool con
tentInitiated) override; |
95 void dispatchWillClose() override; | 93 void dispatchWillClose() override; |
96 void dispatchDidStartProvisionalLoad(double triggeringEventTime) override; | 94 void dispatchDidStartProvisionalLoad(double triggeringEventTime) override; |
97 void dispatchDidReceiveTitle(const String&) override; | 95 void dispatchDidReceiveTitle(const String&) override; |
98 void dispatchDidChangeIcons(IconType) override; | 96 void dispatchDidChangeIcons(IconType) override; |
99 void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) override; | 97 void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) override; |
100 void dispatchDidFailProvisionalLoad(const ResourceError&, HistoryCommitType)
override; | 98 void dispatchDidFailProvisionalLoad(const ResourceError&, HistoryCommitType)
override; |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 Member<WebLocalFrameImpl> m_webFrame; | 195 Member<WebLocalFrameImpl> m_webFrame; |
198 | 196 |
199 String m_userAgent; | 197 String m_userAgent; |
200 }; | 198 }; |
201 | 199 |
202 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr
ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); | 200 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr
ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); |
203 | 201 |
204 } // namespace blink | 202 } // namespace blink |
205 | 203 |
206 #endif | 204 #endif |
OLD | NEW |