| 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 598 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 609 visitor->trace(m_dragController); | 609 visitor->trace(m_dragController); |
| 610 visitor->trace(m_focusController); | 610 visitor->trace(m_focusController); |
| 611 visitor->trace(m_contextMenuController); | 611 visitor->trace(m_contextMenuController); |
| 612 visitor->trace(m_inspectorController); | 612 visitor->trace(m_inspectorController); |
| 613 visitor->trace(m_pointerLockController); | 613 visitor->trace(m_pointerLockController); |
| 614 visitor->trace(m_undoStack); | 614 visitor->trace(m_undoStack); |
| 615 visitor->trace(m_mainFrame); | 615 visitor->trace(m_mainFrame); |
| 616 visitor->trace(m_validationMessageClient); | 616 visitor->trace(m_validationMessageClient); |
| 617 visitor->trace(m_multisamplingChangedObservers); | 617 visitor->trace(m_multisamplingChangedObservers); |
| 618 visitor->trace(m_frameHost); | 618 visitor->trace(m_frameHost); |
| 619 HeapSupplementable<Page>::trace(visitor); |
| 619 #endif | 620 #endif |
| 620 WillBeHeapSupplementable<Page>::trace(visitor); | |
| 621 LifecycleContext<Page>::trace(visitor); | 621 LifecycleContext<Page>::trace(visitor); |
| 622 } | 622 } |
| 623 | 623 |
| 624 void Page::willBeDestroyed() | 624 void Page::willBeDestroyed() |
| 625 { | 625 { |
| 626 // Destroy inspector first, since it uses frame and view during destruction. | 626 // Destroy inspector first, since it uses frame and view during destruction. |
| 627 m_inspectorController->willBeDestroyed(); | 627 m_inspectorController->willBeDestroyed(); |
| 628 | 628 |
| 629 RefPtrWillBeRawPtr<Frame> mainFrame = m_mainFrame; | 629 RefPtrWillBeRawPtr<Frame> mainFrame = m_mainFrame; |
| 630 | 630 |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 664 , spellCheckerClient(0) | 664 , spellCheckerClient(0) |
| 665 , storageClient(0) | 665 , storageClient(0) |
| 666 { | 666 { |
| 667 } | 667 } |
| 668 | 668 |
| 669 Page::PageClients::~PageClients() | 669 Page::PageClients::~PageClients() |
| 670 { | 670 { |
| 671 } | 671 } |
| 672 | 672 |
| 673 } // namespace blink | 673 } // namespace blink |
| OLD | NEW |