| 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 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 554 document->fetcher()->garbageCollectDocumentResources(); | 554 document->fetcher()->garbageCollectDocumentResources(); |
| 555 memoryCache()->pruneAll(); | 555 memoryCache()->pruneAll(); |
| 556 } | 556 } |
| 557 } | 557 } |
| 558 | 558 |
| 559 DEFINE_TRACE(Page) | 559 DEFINE_TRACE(Page) |
| 560 { | 560 { |
| 561 #if ENABLE(OILPAN) | 561 #if ENABLE(OILPAN) |
| 562 visitor->trace(m_animator); | 562 visitor->trace(m_animator); |
| 563 visitor->trace(m_autoscrollController); | 563 visitor->trace(m_autoscrollController); |
| 564 visitor->trace(m_chromeClient); |
| 564 visitor->trace(m_dragCaretController); | 565 visitor->trace(m_dragCaretController); |
| 565 visitor->trace(m_dragController); | 566 visitor->trace(m_dragController); |
| 566 visitor->trace(m_focusController); | 567 visitor->trace(m_focusController); |
| 567 visitor->trace(m_contextMenuController); | 568 visitor->trace(m_contextMenuController); |
| 568 visitor->trace(m_pointerLockController); | 569 visitor->trace(m_pointerLockController); |
| 569 visitor->trace(m_scrollingCoordinator); | 570 visitor->trace(m_scrollingCoordinator); |
| 570 visitor->trace(m_undoStack); | 571 visitor->trace(m_undoStack); |
| 571 visitor->trace(m_mainFrame); | 572 visitor->trace(m_mainFrame); |
| 572 visitor->trace(m_validationMessageClient); | 573 visitor->trace(m_validationMessageClient); |
| 573 visitor->trace(m_multisamplingChangedObservers); | 574 visitor->trace(m_multisamplingChangedObservers); |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 622 { | 623 { |
| 623 } | 624 } |
| 624 | 625 |
| 625 Page::PageClients::~PageClients() | 626 Page::PageClients::~PageClients() |
| 626 { | 627 { |
| 627 } | 628 } |
| 628 | 629 |
| 629 template class CORE_TEMPLATE_EXPORT WillBeHeapSupplement<Page>; | 630 template class CORE_TEMPLATE_EXPORT WillBeHeapSupplement<Page>; |
| 630 | 631 |
| 631 } // namespace blink | 632 } // namespace blink |
| OLD | NEW |