| 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 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 551 | 551 |
| 552 PassOwnPtr<LifecycleNotifier<Page> > Page::createLifecycleNotifier() | 552 PassOwnPtr<LifecycleNotifier<Page> > Page::createLifecycleNotifier() |
| 553 { | 553 { |
| 554 return PageLifecycleNotifier::create(this); | 554 return PageLifecycleNotifier::create(this); |
| 555 } | 555 } |
| 556 | 556 |
| 557 void Page::trace(Visitor* visitor) | 557 void Page::trace(Visitor* visitor) |
| 558 { | 558 { |
| 559 visitor->trace(m_dragCaretController); | 559 visitor->trace(m_dragCaretController); |
| 560 visitor->trace(m_dragController); | 560 visitor->trace(m_dragController); |
| 561 visitor->trace(m_inspectorController); |
| 561 visitor->trace(m_multisamplingChangedObservers); | 562 visitor->trace(m_multisamplingChangedObservers); |
| 562 visitor->trace(m_frameHost); | 563 visitor->trace(m_frameHost); |
| 563 WillBeHeapSupplementable<Page>::trace(visitor); | 564 WillBeHeapSupplementable<Page>::trace(visitor); |
| 564 } | 565 } |
| 565 | 566 |
| 566 void Page::willBeDestroyed() | 567 void Page::willBeDestroyed() |
| 567 { | 568 { |
| 568 // Disable all agents prior to resetting the frame view. | 569 // Disable all agents prior to resetting the frame view. |
| 569 m_inspectorController->willBeDestroyed(); | 570 m_inspectorController->willBeDestroyed(); |
| 570 | 571 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 601 , spellCheckerClient(0) | 602 , spellCheckerClient(0) |
| 602 , storageClient(0) | 603 , storageClient(0) |
| 603 { | 604 { |
| 604 } | 605 } |
| 605 | 606 |
| 606 Page::PageClients::~PageClients() | 607 Page::PageClients::~PageClients() |
| 607 { | 608 { |
| 608 } | 609 } |
| 609 | 610 |
| 610 } // namespace WebCore | 611 } // namespace WebCore |
| OLD | NEW |