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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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(double triggeringEventTime) 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(const ResourceError&, HistoryCommitType)
override; |
98 void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) override; | 98 void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) override; |
99 void dispatchDidFinishDocumentLoad(bool documentIsEmpty) override; | 99 void dispatchDidFinishDocumentLoad(bool documentIsEmpty) override; |
100 void dispatchDidFinishLoad() override; | 100 void dispatchDidFinishLoad() override; |
101 void dispatchDidFirstVisuallyNonEmptyLayout() override; | |
102 | 101 |
103 void dispatchDidChangeThemeColor() override; | 102 void dispatchDidChangeThemeColor() override; |
104 NavigationPolicy decidePolicyForNavigation(const ResourceRequest&, DocumentL
oader*, NavigationPolicy) override; | 103 NavigationPolicy decidePolicyForNavigation(const ResourceRequest&, DocumentL
oader*, NavigationPolicy) override; |
105 void dispatchWillSendSubmitEvent(HTMLFormElement*) override; | 104 void dispatchWillSendSubmitEvent(HTMLFormElement*) override; |
106 void dispatchWillSubmitForm(HTMLFormElement*) override; | 105 void dispatchWillSubmitForm(HTMLFormElement*) override; |
107 void didStartLoading(LoadStartType) override; | 106 void didStartLoading(LoadStartType) override; |
108 void didStopLoading() override; | 107 void didStopLoading() override; |
109 void progressEstimateChanged(double progressEstimate) override; | 108 void progressEstimateChanged(double progressEstimate) override; |
110 void loadURLExternally(const ResourceRequest&, NavigationPolicy, const Strin
g& suggestedName = String()) override; | 109 void loadURLExternally(const ResourceRequest&, NavigationPolicy, const Strin
g& suggestedName = String()) override; |
111 bool navigateBackForward(int offset) const override; | 110 bool navigateBackForward(int offset) const override; |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 // The WebFrame that owns this object and manages its lifetime. Therefore, | 189 // The WebFrame that owns this object and manages its lifetime. Therefore, |
191 // the web frame object is guaranteed to exist. | 190 // the web frame object is guaranteed to exist. |
192 RawPtrWillBeMember<WebLocalFrameImpl> m_webFrame; | 191 RawPtrWillBeMember<WebLocalFrameImpl> m_webFrame; |
193 }; | 192 }; |
194 | 193 |
195 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr
ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); | 194 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr
ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); |
196 | 195 |
197 } // namespace blink | 196 } // namespace blink |
198 | 197 |
199 #endif | 198 #endif |
OLD | NEW |