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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 void dispatchDidReceiveServerRedirectForProvisionalLoad() override {} | 195 void dispatchDidReceiveServerRedirectForProvisionalLoad() override {} |
196 void dispatchWillClose() override {} | 196 void dispatchWillClose() override {} |
197 void dispatchDidStartProvisionalLoad(double triggeringEventTime) override {} | 197 void dispatchDidStartProvisionalLoad(double triggeringEventTime) override {} |
198 void dispatchDidReceiveTitle(const String&) override {} | 198 void dispatchDidReceiveTitle(const String&) override {} |
199 void dispatchDidChangeIcons(IconType) override {} | 199 void dispatchDidChangeIcons(IconType) override {} |
200 void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) override {} | 200 void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) override {} |
201 void dispatchDidFailProvisionalLoad(const ResourceError&, HistoryCommitType)
override {} | 201 void dispatchDidFailProvisionalLoad(const ResourceError&, HistoryCommitType)
override {} |
202 void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) override {
} | 202 void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) override {
} |
203 void dispatchDidFinishDocumentLoad(bool) override {} | 203 void dispatchDidFinishDocumentLoad(bool) override {} |
204 void dispatchDidFinishLoad() override {} | 204 void dispatchDidFinishLoad() override {} |
205 void dispatchDidFirstVisuallyNonEmptyLayout() override {} | |
206 void dispatchDidChangeThemeColor() override {} | 205 void dispatchDidChangeThemeColor() override {} |
207 | 206 |
208 NavigationPolicy decidePolicyForNavigation(const ResourceRequest&, DocumentL
oader*, NavigationPolicy) override; | 207 NavigationPolicy decidePolicyForNavigation(const ResourceRequest&, DocumentL
oader*, NavigationPolicy) override; |
209 | 208 |
210 void dispatchWillSendSubmitEvent(HTMLFormElement*) override; | 209 void dispatchWillSendSubmitEvent(HTMLFormElement*) override; |
211 void dispatchWillSubmitForm(HTMLFormElement*) override; | 210 void dispatchWillSubmitForm(HTMLFormElement*) override; |
212 | 211 |
213 void didStartLoading(LoadStartType) override {} | 212 void didStartLoading(LoadStartType) override {} |
214 void progressEstimateChanged(double) override {} | 213 void progressEstimateChanged(double) override {} |
215 void didStopLoading() override {} | 214 void didStopLoading() override {} |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
324 ~EmptyDragClient() override {} | 323 ~EmptyDragClient() override {} |
325 DragDestinationAction actionMaskForDrag(DragData*) override { return DragDes
tinationActionNone; } | 324 DragDestinationAction actionMaskForDrag(DragData*) override { return DragDes
tinationActionNone; } |
326 void startDrag(DragImage*, const IntPoint&, const IntPoint&, DataTransfer*,
LocalFrame*, bool) override {} | 325 void startDrag(DragImage*, const IntPoint&, const IntPoint&, DataTransfer*,
LocalFrame*, bool) override {} |
327 }; | 326 }; |
328 | 327 |
329 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); | 328 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); |
330 | 329 |
331 } // namespace blink | 330 } // namespace blink |
332 | 331 |
333 #endif // EmptyClients_h | 332 #endif // EmptyClients_h |
OLD | NEW |