| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 virtual bool inShadowTree() const override; | 70 virtual bool inShadowTree() const override; |
| 71 virtual Frame* opener() const override; | 71 virtual Frame* opener() const override; |
| 72 virtual void setOpener(Frame*) override; | 72 virtual void setOpener(Frame*) override; |
| 73 virtual Frame* parent() const override; | 73 virtual Frame* parent() const override; |
| 74 virtual Frame* top() const override; | 74 virtual Frame* top() const override; |
| 75 virtual Frame* previousSibling() const override; | 75 virtual Frame* previousSibling() const override; |
| 76 virtual Frame* nextSibling() const override; | 76 virtual Frame* nextSibling() const override; |
| 77 virtual Frame* firstChild() const override; | 77 virtual Frame* firstChild() const override; |
| 78 virtual Frame* lastChild() const override; | 78 virtual Frame* lastChild() const override; |
| 79 virtual void willBeDetached() override; | 79 virtual void willBeDetached() override; |
| 80 virtual void detached() override; | 80 virtual void detached(FrameDetachType) override; |
| 81 virtual void dispatchWillSendRequest(DocumentLoader*, unsigned long identifi
er, ResourceRequest&, const ResourceResponse& redirectResponse) override; | 81 virtual void dispatchWillSendRequest(DocumentLoader*, unsigned long identifi
er, ResourceRequest&, const ResourceResponse& redirectResponse) override; |
| 82 virtual void dispatchDidReceiveResponse(DocumentLoader*, unsigned long ident
ifier, const ResourceResponse&) override; | 82 virtual void dispatchDidReceiveResponse(DocumentLoader*, unsigned long ident
ifier, const ResourceResponse&) override; |
| 83 virtual void dispatchDidChangeResourcePriority(unsigned long identifier, Res
ourceLoadPriority, int intraPriorityValue) override; | 83 virtual void dispatchDidChangeResourcePriority(unsigned long identifier, Res
ourceLoadPriority, int intraPriorityValue) override; |
| 84 virtual void dispatchDidFinishLoading(DocumentLoader*, unsigned long identif
ier) override; | 84 virtual void dispatchDidFinishLoading(DocumentLoader*, unsigned long identif
ier) override; |
| 85 virtual void dispatchDidLoadResourceFromMemoryCache(const ResourceRequest&,
const ResourceResponse&) override; | 85 virtual void dispatchDidLoadResourceFromMemoryCache(const ResourceRequest&,
const ResourceResponse&) override; |
| 86 virtual void dispatchDidHandleOnloadEvents() override; | 86 virtual void dispatchDidHandleOnloadEvents() override; |
| 87 virtual void dispatchDidReceiveServerRedirectForProvisionalLoad() override; | 87 virtual void dispatchDidReceiveServerRedirectForProvisionalLoad() override; |
| 88 virtual void dispatchDidNavigateWithinPage(HistoryItem*, HistoryCommitType)
override; | 88 virtual void dispatchDidNavigateWithinPage(HistoryItem*, HistoryCommitType)
override; |
| 89 virtual void dispatchWillClose() override; | 89 virtual void dispatchWillClose() override; |
| 90 virtual void dispatchDidStartProvisionalLoad(double triggeringEventTime) ove
rride; | 90 virtual void dispatchDidStartProvisionalLoad(double triggeringEventTime) ove
rride; |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 // The WebFrame that owns this object and manages its lifetime. Therefore, | 187 // The WebFrame that owns this object and manages its lifetime. Therefore, |
| 188 // the web frame object is guaranteed to exist. | 188 // the web frame object is guaranteed to exist. |
| 189 WebLocalFrameImpl* m_webFrame; | 189 WebLocalFrameImpl* m_webFrame; |
| 190 }; | 190 }; |
| 191 | 191 |
| 192 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr
ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); | 192 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr
ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); |
| 193 | 193 |
| 194 } // namespace blink | 194 } // namespace blink |
| 195 | 195 |
| 196 #endif | 196 #endif |
| OLD | NEW |