OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All R
ights Reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All R
ights Reserved. |
3 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) | 3 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) |
4 * | 4 * |
5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 606 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
617 m_scrollingCoordinator->willBeDestroyed(); | 617 m_scrollingCoordinator->willBeDestroyed(); |
618 | 618 |
619 #ifndef NDEBUG | 619 #ifndef NDEBUG |
620 pageCounter.decrement(); | 620 pageCounter.decrement(); |
621 #endif | 621 #endif |
622 | 622 |
623 m_chrome->willBeDestroyed(); | 623 m_chrome->willBeDestroyed(); |
624 if (m_validationMessageClient) | 624 if (m_validationMessageClient) |
625 m_validationMessageClient->willBeDestroyed(); | 625 m_validationMessageClient->willBeDestroyed(); |
626 m_mainFrame = nullptr; | 626 m_mainFrame = nullptr; |
| 627 |
| 628 LifecycleContext<Page>::contextDestroyed(); |
627 } | 629 } |
628 | 630 |
629 Page::PageClients::PageClients() | 631 Page::PageClients::PageClients() |
630 : chromeClient(nullptr) | 632 : chromeClient(nullptr) |
631 , contextMenuClient(nullptr) | 633 , contextMenuClient(nullptr) |
632 , editorClient(nullptr) | 634 , editorClient(nullptr) |
633 , dragClient(nullptr) | 635 , dragClient(nullptr) |
634 , inspectorClient(nullptr) | 636 , inspectorClient(nullptr) |
635 , spellCheckerClient(nullptr) | 637 , spellCheckerClient(nullptr) |
636 , storageClient(nullptr) | 638 , storageClient(nullptr) |
637 { | 639 { |
638 } | 640 } |
639 | 641 |
640 Page::PageClients::~PageClients() | 642 Page::PageClients::~PageClients() |
641 { | 643 { |
642 } | 644 } |
643 | 645 |
644 } // namespace blink | 646 } // namespace blink |
OLD | NEW |