| 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 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 446 unsigned backForwardLength() override { return 0; } | 446 unsigned backForwardLength() override { return 0; } |
| 447 void forwardPostMessage(MessageEvent*, | 447 void forwardPostMessage(MessageEvent*, |
| 448 PassRefPtr<SecurityOrigin> target, | 448 PassRefPtr<SecurityOrigin> target, |
| 449 LocalFrame* sourceFrame) const override {} | 449 LocalFrame* sourceFrame) const override {} |
| 450 void forwardInputEvent(Event*) override {} | 450 void forwardInputEvent(Event*) override {} |
| 451 void frameRectsChanged(const IntRect& frameRect) override {} | 451 void frameRectsChanged(const IntRect& frameRect) override {} |
| 452 void updateRemoteViewportIntersection( | 452 void updateRemoteViewportIntersection( |
| 453 const IntRect& viewportIntersection) override {} | 453 const IntRect& viewportIntersection) override {} |
| 454 void advanceFocus(WebFocusType, LocalFrame* source) override {} | 454 void advanceFocus(WebFocusType, LocalFrame* source) override {} |
| 455 void visibilityChanged(bool visible) override {} | 455 void visibilityChanged(bool visible) override {} |
| 456 int print(const IntRect& size, int id) override { return 0; } |
| 456 | 457 |
| 457 // FrameClient implementation. | 458 // FrameClient implementation. |
| 458 bool inShadowTree() const override { return false; } | 459 bool inShadowTree() const override { return false; } |
| 459 void willBeDetached() override {} | 460 void willBeDetached() override {} |
| 460 void detached(FrameDetachType) override {} | 461 void detached(FrameDetachType) override {} |
| 461 Frame* opener() const override { return nullptr; } | 462 Frame* opener() const override { return nullptr; } |
| 462 void setOpener(Frame*) override {} | 463 void setOpener(Frame*) override {} |
| 463 Frame* parent() const override { return nullptr; } | 464 Frame* parent() const override { return nullptr; } |
| 464 Frame* top() const override { return nullptr; } | 465 Frame* top() const override { return nullptr; } |
| 465 Frame* nextSibling() const override { return nullptr; } | 466 Frame* nextSibling() const override { return nullptr; } |
| 466 Frame* firstChild() const override { return nullptr; } | 467 Frame* firstChild() const override { return nullptr; } |
| 467 void frameFocused() const override {} | 468 void frameFocused() const override {} |
| 468 }; | 469 }; |
| 469 | 470 |
| 470 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); | 471 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); |
| 471 | 472 |
| 472 } // namespace blink | 473 } // namespace blink |
| 473 | 474 |
| 474 #endif // EmptyClients_h | 475 #endif // EmptyClients_h |
| OLD | NEW |