| 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 void detached(FrameDetachType) override; | 83 void detached(FrameDetachType) override; |
| 84 void dispatchWillSendRequest(DocumentLoader*, unsigned long identifier, Reso
urceRequest&, const ResourceResponse& redirectResponse) override; | 84 void dispatchWillSendRequest(DocumentLoader*, unsigned long identifier, Reso
urceRequest&, const ResourceResponse& redirectResponse) override; |
| 85 void dispatchDidReceiveResponse(DocumentLoader*, unsigned long identifier, c
onst ResourceResponse&) override; | 85 void dispatchDidReceiveResponse(DocumentLoader*, unsigned long identifier, c
onst ResourceResponse&) override; |
| 86 void dispatchDidChangeResourcePriority(unsigned long identifier, ResourceLoa
dPriority, int intraPriorityValue) override; | 86 void dispatchDidChangeResourcePriority(unsigned long identifier, ResourceLoa
dPriority, int intraPriorityValue) override; |
| 87 void dispatchDidFinishLoading(DocumentLoader*, unsigned long identifier) ove
rride; | 87 void dispatchDidFinishLoading(DocumentLoader*, unsigned long identifier) ove
rride; |
| 88 void dispatchDidLoadResourceFromMemoryCache(const ResourceRequest&, const Re
sourceResponse&) override; | 88 void dispatchDidLoadResourceFromMemoryCache(const ResourceRequest&, const Re
sourceResponse&) override; |
| 89 void dispatchDidHandleOnloadEvents() override; | 89 void dispatchDidHandleOnloadEvents() override; |
| 90 void dispatchDidReceiveServerRedirectForProvisionalLoad() override; | 90 void dispatchDidReceiveServerRedirectForProvisionalLoad() override; |
| 91 void dispatchDidNavigateWithinPage(HistoryItem*, HistoryCommitType) override
; | 91 void dispatchDidNavigateWithinPage(HistoryItem*, HistoryCommitType) override
; |
| 92 void dispatchWillClose() override; | 92 void dispatchWillClose() override; |
| 93 void dispatchDidStartProvisionalLoad(double triggeringEventTime) override; | 93 void dispatchDidStartProvisionalLoad(DocumentLoader*, double triggeringEvent
Time) override; |
| 94 void dispatchDidReceiveTitle(const String&) override; | 94 void dispatchDidReceiveTitle(const String&) override; |
| 95 void dispatchDidChangeIcons(IconType) override; | 95 void dispatchDidChangeIcons(IconType) override; |
| 96 void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) override; | 96 void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) override; |
| 97 void dispatchDidFailProvisionalLoad(const ResourceError&, HistoryCommitType)
override; | 97 void dispatchDidFailProvisionalLoad(DocumentLoader*, const ResourceError&, H
istoryCommitType) override; |
| 98 void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) override; | 98 void dispatchDidFailLoad(DocumentLoader*, const ResourceError&, HistoryCommi
tType) override; |
| 99 void dispatchDidFinishDocumentLoad(bool documentIsEmpty) override; | 99 void dispatchDidFinishDocumentLoad(bool documentIsEmpty) override; |
| 100 void dispatchDidFinishLoad() override; | 100 void dispatchDidFinishLoad() override; |
| 101 | 101 |
| 102 void dispatchDidChangeThemeColor() override; | 102 void dispatchDidChangeThemeColor() override; |
| 103 NavigationPolicy decidePolicyForNavigation(const ResourceRequest&, DocumentL
oader*, NavigationPolicy) override; | 103 NavigationPolicy decidePolicyForNavigation(const ResourceRequest&, DocumentL
oader*, NavigationPolicy) override; |
| 104 bool hasPendingNavigation() override; | 104 bool hasPendingNavigation() override; |
| 105 void dispatchWillSendSubmitEvent(HTMLFormElement*) override; | 105 void dispatchWillSendSubmitEvent(HTMLFormElement*) override; |
| 106 void dispatchWillSubmitForm(HTMLFormElement*) override; | 106 void dispatchWillSubmitForm(DocumentLoader*, HTMLFormElement*) override; |
| 107 void didStartLoading(LoadStartType) override; | 107 void didStartLoading(LoadStartType) override; |
| 108 void didStopLoading() override; | 108 void didStopLoading() override; |
| 109 void progressEstimateChanged(double progressEstimate) override; | 109 void progressEstimateChanged(double progressEstimate) override; |
| 110 void loadURLExternally(const ResourceRequest&, NavigationPolicy, const Strin
g& suggestedName = String()) override; | 110 void loadURLExternally(const ResourceRequest&, NavigationPolicy, const Strin
g& suggestedName = String()) override; |
| 111 bool navigateBackForward(int offset) const override; | 111 bool navigateBackForward(int offset) const override; |
| 112 void didAccessInitialDocument() override; | 112 void didAccessInitialDocument() override; |
| 113 void didDisplayInsecureContent() override; | 113 void didDisplayInsecureContent() override; |
| 114 void didRunInsecureContent(SecurityOrigin*, const KURL& insecureURL) overrid
e; | 114 void didRunInsecureContent(SecurityOrigin*, const KURL& insecureURL) overrid
e; |
| 115 void didDetectXSS(const KURL&, bool didBlockEntirePage) override; | 115 void didDetectXSS(const KURL&, bool didBlockEntirePage) override; |
| 116 void didDispatchPingLoader(const KURL&) override; | 116 void didDispatchPingLoader(const KURL&) override; |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 // The WebFrame that owns this object and manages its lifetime. Therefore, | 185 // The WebFrame that owns this object and manages its lifetime. Therefore, |
| 186 // the web frame object is guaranteed to exist. | 186 // the web frame object is guaranteed to exist. |
| 187 RawPtrWillBeMember<WebLocalFrameImpl> m_webFrame; | 187 RawPtrWillBeMember<WebLocalFrameImpl> m_webFrame; |
| 188 }; | 188 }; |
| 189 | 189 |
| 190 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr
ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); | 190 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr
ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); |
| 191 | 191 |
| 192 } // namespace blink | 192 } // namespace blink |
| 193 | 193 |
| 194 #endif | 194 #endif |
| OLD | NEW |