| 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 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) override {} | 267 void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) override {} |
| 268 void dispatchDidFinishDocumentLoad() override {} | 268 void dispatchDidFinishDocumentLoad() override {} |
| 269 void dispatchDidFinishLoad() override {} | 269 void dispatchDidFinishLoad() override {} |
| 270 void dispatchDidChangeThemeColor() override {} | 270 void dispatchDidChangeThemeColor() override {} |
| 271 | 271 |
| 272 NavigationPolicy decidePolicyForNavigation(const ResourceRequest&, | 272 NavigationPolicy decidePolicyForNavigation(const ResourceRequest&, |
| 273 DocumentLoader*, | 273 DocumentLoader*, |
| 274 NavigationType, | 274 NavigationType, |
| 275 NavigationPolicy, | 275 NavigationPolicy, |
| 276 bool, | 276 bool, |
| 277 bool) override; | 277 bool, |
| 278 HTMLFormElement*) override; |
| 278 | 279 |
| 279 void dispatchWillSendSubmitEvent(HTMLFormElement*) override; | 280 void dispatchWillSendSubmitEvent(HTMLFormElement*) override; |
| 280 void dispatchWillSubmitForm(HTMLFormElement*) override; | 281 void dispatchWillSubmitForm(HTMLFormElement*) override; |
| 281 | 282 |
| 282 void didStartLoading(LoadStartType) override {} | 283 void didStartLoading(LoadStartType) override {} |
| 283 void progressEstimateChanged(double) override {} | 284 void progressEstimateChanged(double) override {} |
| 284 void didStopLoading() override {} | 285 void didStopLoading() override {} |
| 285 | 286 |
| 286 void loadURLExternally(const ResourceRequest&, | 287 void loadURLExternally(const ResourceRequest&, |
| 287 NavigationPolicy, | 288 NavigationPolicy, |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 425 ~EmptyContextMenuClient() override {} | 426 ~EmptyContextMenuClient() override {} |
| 426 bool showContextMenu(const ContextMenu*, bool) override { return false; } | 427 bool showContextMenu(const ContextMenu*, bool) override { return false; } |
| 427 void clearContextMenu() override {} | 428 void clearContextMenu() override {} |
| 428 }; | 429 }; |
| 429 | 430 |
| 430 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); | 431 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); |
| 431 | 432 |
| 432 } // namespace blink | 433 } // namespace blink |
| 433 | 434 |
| 434 #endif // EmptyClients_h | 435 #endif // EmptyClients_h |
| OLD | NEW |