OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006 Eric Seidel (eric@webkit.org) | 2 * Copyright (C) 2006 Eric Seidel (eric@webkit.org) |
3 * Copyright (C) 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. | 3 * Copyright (C) 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. |
4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). | 4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
5 * Copyright (C) 2012 Samsung Electronics. All rights reserved. | 5 * Copyright (C) 2012 Samsung Electronics. All rights reserved. |
6 * | 6 * |
7 * Redistribution and use in source and binary forms, with or without | 7 * Redistribution and use in source and binary forms, with or without |
8 * modification, are permitted provided that the following conditions | 8 * modification, are permitted provided that the following conditions |
9 * are met: | 9 * are met: |
10 * 1. Redistributions of source code must retain the above copyright | 10 * 1. Redistributions of source code must retain the above copyright |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 | 191 |
192 void dispatchDidHandleOnloadEvents() override {} | 192 void dispatchDidHandleOnloadEvents() override {} |
193 void dispatchDidReceiveServerRedirectForProvisionalLoad() override {} | 193 void dispatchDidReceiveServerRedirectForProvisionalLoad() override {} |
194 void dispatchWillClose() override {} | 194 void dispatchWillClose() override {} |
195 void dispatchDidStartProvisionalLoad(double triggeringEventTime) override {} | 195 void dispatchDidStartProvisionalLoad(double triggeringEventTime) override {} |
196 void dispatchDidReceiveTitle(const String&) override {} | 196 void dispatchDidReceiveTitle(const String&) override {} |
197 void dispatchDidChangeIcons(IconType) override {} | 197 void dispatchDidChangeIcons(IconType) override {} |
198 void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) override {} | 198 void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) override {} |
199 void dispatchDidFailProvisionalLoad(const ResourceError&, HistoryCommitType)
override {} | 199 void dispatchDidFailProvisionalLoad(const ResourceError&, HistoryCommitType)
override {} |
200 void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) override {
} | 200 void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) override {
} |
201 void dispatchDidFinishDocumentLoad() override {} | 201 void dispatchDidFinishDocumentLoad(bool) override {} |
202 void dispatchDidFinishLoad() override {} | 202 void dispatchDidFinishLoad() override {} |
203 void dispatchDidFirstVisuallyNonEmptyLayout() override {} | 203 void dispatchDidFirstVisuallyNonEmptyLayout() override {} |
204 void dispatchDidChangeThemeColor() override {} | 204 void dispatchDidChangeThemeColor() override {} |
205 | 205 |
206 NavigationPolicy decidePolicyForNavigation(const ResourceRequest&, DocumentL
oader*, NavigationPolicy) override; | 206 NavigationPolicy decidePolicyForNavigation(const ResourceRequest&, DocumentL
oader*, NavigationPolicy) override; |
207 | 207 |
208 void dispatchWillSendSubmitEvent(HTMLFormElement*) override; | 208 void dispatchWillSendSubmitEvent(HTMLFormElement*) override; |
209 void dispatchWillSubmitForm(HTMLFormElement*) override; | 209 void dispatchWillSubmitForm(HTMLFormElement*) override; |
210 | 210 |
211 void didStartLoading(LoadStartType) override {} | 211 void didStartLoading(LoadStartType) override {} |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
318 ~EmptyDragClient() override {} | 318 ~EmptyDragClient() override {} |
319 DragDestinationAction actionMaskForDrag(DragData*) override { return DragDes
tinationActionNone; } | 319 DragDestinationAction actionMaskForDrag(DragData*) override { return DragDes
tinationActionNone; } |
320 void startDrag(DragImage*, const IntPoint&, const IntPoint&, DataTransfer*,
LocalFrame*, bool) override {} | 320 void startDrag(DragImage*, const IntPoint&, const IntPoint&, DataTransfer*,
LocalFrame*, bool) override {} |
321 }; | 321 }; |
322 | 322 |
323 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); | 323 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); |
324 | 324 |
325 } // namespace blink | 325 } // namespace blink |
326 | 326 |
327 #endif // EmptyClients_h | 327 #endif // EmptyClients_h |
OLD | NEW |