| 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 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 void DispatchDidCommitLoad(HistoryItem*, HistoryCommitType) override {} | 285 void DispatchDidCommitLoad(HistoryItem*, HistoryCommitType) override {} |
| 286 void DispatchDidFailProvisionalLoad(const ResourceError&, | 286 void DispatchDidFailProvisionalLoad(const ResourceError&, |
| 287 HistoryCommitType) override {} | 287 HistoryCommitType) override {} |
| 288 void DispatchDidFailLoad(const ResourceError&, HistoryCommitType) override {} | 288 void DispatchDidFailLoad(const ResourceError&, HistoryCommitType) override {} |
| 289 void DispatchDidFinishDocumentLoad() override {} | 289 void DispatchDidFinishDocumentLoad() override {} |
| 290 void DispatchDidFinishLoad() override {} | 290 void DispatchDidFinishLoad() override {} |
| 291 void DispatchDidChangeThemeColor() override {} | 291 void DispatchDidChangeThemeColor() override {} |
| 292 | 292 |
| 293 NavigationPolicy DecidePolicyForNavigation( | 293 NavigationPolicy DecidePolicyForNavigation( |
| 294 const ResourceRequest&, | 294 const ResourceRequest&, |
| 295 Document* origin_document, |
| 295 DocumentLoader*, | 296 DocumentLoader*, |
| 296 NavigationType, | 297 NavigationType, |
| 297 NavigationPolicy, | 298 NavigationPolicy, |
| 298 bool, | 299 bool, |
| 299 bool, | 300 bool, |
| 300 HTMLFormElement*, | 301 HTMLFormElement*, |
| 301 ContentSecurityPolicyDisposition) override; | 302 ContentSecurityPolicyDisposition) override; |
| 302 | 303 |
| 303 void DispatchWillSendSubmitEvent(HTMLFormElement*) override; | 304 void DispatchWillSendSubmitEvent(HTMLFormElement*) override; |
| 304 void DispatchWillSubmitForm(HTMLFormElement*) override; | 305 void DispatchWillSubmitForm(HTMLFormElement*) override; |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 483 Frame* NextSibling() const override { return nullptr; } | 484 Frame* NextSibling() const override { return nullptr; } |
| 484 Frame* FirstChild() const override { return nullptr; } | 485 Frame* FirstChild() const override { return nullptr; } |
| 485 void FrameFocused() const override {} | 486 void FrameFocused() const override {} |
| 486 }; | 487 }; |
| 487 | 488 |
| 488 CORE_EXPORT void FillWithEmptyClients(Page::PageClients&); | 489 CORE_EXPORT void FillWithEmptyClients(Page::PageClients&); |
| 489 | 490 |
| 490 } // namespace blink | 491 } // namespace blink |
| 491 | 492 |
| 492 #endif // EmptyClients_h | 493 #endif // EmptyClients_h |
| OLD | NEW |