| 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 442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 453 void Reload(FrameLoadType, ClientRedirectPolicy) override {} | 453 void Reload(FrameLoadType, ClientRedirectPolicy) override {} |
| 454 unsigned BackForwardLength() override { return 0; } | 454 unsigned BackForwardLength() override { return 0; } |
| 455 void ForwardPostMessage(MessageEvent*, | 455 void ForwardPostMessage(MessageEvent*, |
| 456 PassRefPtr<SecurityOrigin> target, | 456 PassRefPtr<SecurityOrigin> target, |
| 457 LocalFrame* source_frame) const override {} | 457 LocalFrame* source_frame) const override {} |
| 458 void FrameRectsChanged(const IntRect& frame_rect) override {} | 458 void FrameRectsChanged(const IntRect& frame_rect) override {} |
| 459 void UpdateRemoteViewportIntersection( | 459 void UpdateRemoteViewportIntersection( |
| 460 const IntRect& viewport_intersection) override {} | 460 const IntRect& viewport_intersection) override {} |
| 461 void AdvanceFocus(WebFocusType, LocalFrame* source) override {} | 461 void AdvanceFocus(WebFocusType, LocalFrame* source) override {} |
| 462 void VisibilityChanged(bool visible) override {} | 462 void VisibilityChanged(bool visible) override {} |
| 463 void SetIsInert(bool) override {} |
| 463 | 464 |
| 464 // FrameClient implementation. | 465 // FrameClient implementation. |
| 465 bool InShadowTree() const override { return false; } | 466 bool InShadowTree() const override { return false; } |
| 466 void WillBeDetached() override {} | 467 void WillBeDetached() override {} |
| 467 void Detached(FrameDetachType) override {} | 468 void Detached(FrameDetachType) override {} |
| 468 Frame* Opener() const override { return nullptr; } | 469 Frame* Opener() const override { return nullptr; } |
| 469 void SetOpener(Frame*) override {} | 470 void SetOpener(Frame*) override {} |
| 470 Frame* Parent() const override { return nullptr; } | 471 Frame* Parent() const override { return nullptr; } |
| 471 Frame* Top() const override { return nullptr; } | 472 Frame* Top() const override { return nullptr; } |
| 472 Frame* NextSibling() const override { return nullptr; } | 473 Frame* NextSibling() const override { return nullptr; } |
| 473 Frame* FirstChild() const override { return nullptr; } | 474 Frame* FirstChild() const override { return nullptr; } |
| 474 void FrameFocused() const override {} | 475 void FrameFocused() const override {} |
| 475 }; | 476 }; |
| 476 | 477 |
| 477 CORE_EXPORT void FillWithEmptyClients(Page::PageClients&); | 478 CORE_EXPORT void FillWithEmptyClients(Page::PageClients&); |
| 478 | 479 |
| 479 } // namespace blink | 480 } // namespace blink |
| 480 | 481 |
| 481 #endif // EmptyClients_h | 482 #endif // EmptyClients_h |
| OLD | NEW |