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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 virtual void dispatchDidLoadResourceFromMemoryCache(const ResourceReques
t&, const ResourceResponse&) = 0; | 85 virtual void dispatchDidLoadResourceFromMemoryCache(const ResourceReques
t&, const ResourceResponse&) = 0; |
86 | 86 |
87 virtual void dispatchDidHandleOnloadEvents() = 0; | 87 virtual void dispatchDidHandleOnloadEvents() = 0; |
88 virtual void dispatchDidReceiveServerRedirectForProvisionalLoad() = 0; | 88 virtual void dispatchDidReceiveServerRedirectForProvisionalLoad() = 0; |
89 virtual void dispatchDidNavigateWithinPage(HistoryItem*, HistoryCommitTy
pe) { } | 89 virtual void dispatchDidNavigateWithinPage(HistoryItem*, HistoryCommitTy
pe) { } |
90 virtual void dispatchWillClose() = 0; | 90 virtual void dispatchWillClose() = 0; |
91 virtual void dispatchDidStartProvisionalLoad(bool isTransitionNavigation
, double triggeringEventTime) = 0; | 91 virtual void dispatchDidStartProvisionalLoad(bool isTransitionNavigation
, double triggeringEventTime) = 0; |
92 virtual void dispatchDidReceiveTitle(const String&) = 0; | 92 virtual void dispatchDidReceiveTitle(const String&) = 0; |
93 virtual void dispatchDidChangeIcons(IconType) = 0; | 93 virtual void dispatchDidChangeIcons(IconType) = 0; |
94 virtual void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) = 0; | 94 virtual void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) = 0; |
95 virtual void dispatchDidFailProvisionalLoad(const ResourceError&) = 0; | 95 virtual void dispatchDidFailProvisionalLoad(const ResourceError&, Histor
yCommitType) = 0; |
96 virtual void dispatchDidFailLoad(const ResourceError&) = 0; | 96 virtual void dispatchDidFailLoad(const ResourceError&, HistoryCommitType
) = 0; |
97 virtual void dispatchDidFinishDocumentLoad() = 0; | 97 virtual void dispatchDidFinishDocumentLoad() = 0; |
98 virtual void dispatchDidFinishLoad() = 0; | 98 virtual void dispatchDidFinishLoad() = 0; |
99 virtual void dispatchDidFirstVisuallyNonEmptyLayout() = 0; | 99 virtual void dispatchDidFirstVisuallyNonEmptyLayout() = 0; |
100 virtual void dispatchDidChangeThemeColor() = 0; | 100 virtual void dispatchDidChangeThemeColor() = 0; |
101 | 101 |
102 virtual NavigationPolicy decidePolicyForNavigation(const ResourceRequest
&, DocumentLoader*, NavigationPolicy, bool isTransitionNavigation) = 0; | 102 virtual NavigationPolicy decidePolicyForNavigation(const ResourceRequest
&, DocumentLoader*, NavigationPolicy, bool isTransitionNavigation) = 0; |
103 | 103 |
104 virtual void dispatchAddNavigationTransitionData(const Document::Transit
ionElementData&) { } | 104 virtual void dispatchAddNavigationTransitionData(const Document::Transit
ionElementData&) { } |
105 virtual void dispatchWillRequestResource(FetchRequest*) { } | 105 virtual void dispatchWillRequestResource(FetchRequest*) { } |
106 | 106 |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
239 BeforeUnloadHandler, | 239 BeforeUnloadHandler, |
240 UnloadHandler, | 240 UnloadHandler, |
241 }; | 241 }; |
242 virtual void suddenTerminationDisablerChanged(bool present, SuddenTermin
ationDisablerType) { } | 242 virtual void suddenTerminationDisablerChanged(bool present, SuddenTermin
ationDisablerType) { } |
243 | 243 |
244 }; | 244 }; |
245 | 245 |
246 } // namespace blink | 246 } // namespace blink |
247 | 247 |
248 #endif // FrameLoaderClient_h | 248 #endif // FrameLoaderClient_h |
OLD | NEW |