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