| 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 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 void dispatchDidReceiveTitle(const String&) override {} | 215 void dispatchDidReceiveTitle(const String&) override {} |
| 216 void dispatchDidChangeIcons(IconType) override {} | 216 void dispatchDidChangeIcons(IconType) override {} |
| 217 void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) override {} | 217 void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) override {} |
| 218 void dispatchDidFailProvisionalLoad(const ResourceError&, HistoryCommitType)
override {} | 218 void dispatchDidFailProvisionalLoad(const ResourceError&, HistoryCommitType)
override {} |
| 219 void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) override {
} | 219 void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) override {
} |
| 220 void dispatchDidFinishDocumentLoad() override {} | 220 void dispatchDidFinishDocumentLoad() override {} |
| 221 void dispatchDidFinishLoad() override {} | 221 void dispatchDidFinishLoad() override {} |
| 222 void dispatchDidChangeThemeColor() override {} | 222 void dispatchDidChangeThemeColor() override {} |
| 223 | 223 |
| 224 NavigationPolicy decidePolicyForNavigation(const ResourceRequest&, DocumentL
oader*, NavigationType, NavigationPolicy, bool, bool) override; | 224 NavigationPolicy decidePolicyForNavigation(const ResourceRequest&, DocumentL
oader*, NavigationType, NavigationPolicy, bool, bool) override; |
| 225 bool hasPendingNavigation() override; | |
| 226 | 225 |
| 227 void dispatchWillSendSubmitEvent(HTMLFormElement*) override; | 226 void dispatchWillSendSubmitEvent(HTMLFormElement*) override; |
| 228 void dispatchWillSubmitForm(HTMLFormElement*) override; | 227 void dispatchWillSubmitForm(HTMLFormElement*) override; |
| 229 | 228 |
| 230 void didStartLoading(LoadStartType) override {} | 229 void didStartLoading(LoadStartType) override {} |
| 231 void progressEstimateChanged(double) override {} | 230 void progressEstimateChanged(double) override {} |
| 232 void didStopLoading() override {} | 231 void didStopLoading() override {} |
| 233 | 232 |
| 234 void loadURLExternally(const ResourceRequest&, NavigationPolicy, const Strin
g&, bool) override {} | 233 void loadURLExternally(const ResourceRequest&, NavigationPolicy, const Strin
g&, bool) override {} |
| 235 | 234 |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 ~EmptyContextMenuClient() override {} | 328 ~EmptyContextMenuClient() override {} |
| 330 bool showContextMenu(const ContextMenu*, bool) override { return false; } | 329 bool showContextMenu(const ContextMenu*, bool) override { return false; } |
| 331 void clearContextMenu() override {} | 330 void clearContextMenu() override {} |
| 332 }; | 331 }; |
| 333 | 332 |
| 334 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); | 333 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); |
| 335 | 334 |
| 336 } // namespace blink | 335 } // namespace blink |
| 337 | 336 |
| 338 #endif // EmptyClients_h | 337 #endif // EmptyClients_h |
| OLD | NEW |