OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights
reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights
reserved. |
3 * Copyright (C) 2012 Google Inc. All rights reserved. | 3 * Copyright (C) 2012 Google 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 | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * | 8 * |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 virtual void dispatchWillClose() = 0; | 102 virtual void dispatchWillClose() = 0; |
103 virtual void dispatchDidStartProvisionalLoad() = 0; | 103 virtual void dispatchDidStartProvisionalLoad() = 0; |
104 virtual void dispatchDidReceiveTitle(const String&) = 0; | 104 virtual void dispatchDidReceiveTitle(const String&) = 0; |
105 virtual void dispatchDidChangeIcons(IconType) = 0; | 105 virtual void dispatchDidChangeIcons(IconType) = 0; |
106 virtual void dispatchDidCommitLoad(LocalFrame*, HistoryItem*, HistoryCom
mitType) = 0; | 106 virtual void dispatchDidCommitLoad(LocalFrame*, HistoryItem*, HistoryCom
mitType) = 0; |
107 virtual void dispatchDidFailProvisionalLoad(const ResourceError&) = 0; | 107 virtual void dispatchDidFailProvisionalLoad(const ResourceError&) = 0; |
108 virtual void dispatchDidFailLoad(const ResourceError&) = 0; | 108 virtual void dispatchDidFailLoad(const ResourceError&) = 0; |
109 virtual void dispatchDidFinishDocumentLoad() = 0; | 109 virtual void dispatchDidFinishDocumentLoad() = 0; |
110 virtual void dispatchDidFinishLoad() = 0; | 110 virtual void dispatchDidFinishLoad() = 0; |
111 virtual void dispatchDidFirstVisuallyNonEmptyLayout() = 0; | 111 virtual void dispatchDidFirstVisuallyNonEmptyLayout() = 0; |
| 112 virtual void dispatchDidChangeBrandColor() = 0; |
112 | 113 |
113 virtual NavigationPolicy decidePolicyForNavigation(const ResourceRequest
&, DocumentLoader*, NavigationPolicy) = 0; | 114 virtual NavigationPolicy decidePolicyForNavigation(const ResourceRequest
&, DocumentLoader*, NavigationPolicy) = 0; |
114 | 115 |
115 virtual void dispatchWillRequestResource(FetchRequest*) { } | 116 virtual void dispatchWillRequestResource(FetchRequest*) { } |
116 | 117 |
117 virtual void dispatchWillSendSubmitEvent(HTMLFormElement*) = 0; | 118 virtual void dispatchWillSendSubmitEvent(HTMLFormElement*) = 0; |
118 virtual void dispatchWillSubmitForm(HTMLFormElement*) = 0; | 119 virtual void dispatchWillSubmitForm(HTMLFormElement*) = 0; |
119 | 120 |
120 virtual void didStartLoading(LoadStartType) = 0; | 121 virtual void didStartLoading(LoadStartType) = 0; |
121 virtual void progressEstimateChanged(double progressEstimate) = 0; | 122 virtual void progressEstimateChanged(double progressEstimate) = 0; |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
225 virtual void didStopAllLoaders() { } | 226 virtual void didStopAllLoaders() { } |
226 | 227 |
227 virtual void dispatchDidChangeManifest() { } | 228 virtual void dispatchDidChangeManifest() { } |
228 | 229 |
229 virtual bool isFrameLoaderClientImpl() const { return false; } | 230 virtual bool isFrameLoaderClientImpl() const { return false; } |
230 }; | 231 }; |
231 | 232 |
232 } // namespace WebCore | 233 } // namespace WebCore |
233 | 234 |
234 #endif // FrameLoaderClient_h | 235 #endif // FrameLoaderClient_h |
OLD | NEW |