Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(64)

Side by Side Diff: third_party/WebKit/Source/core/page/Page.cpp

Issue 1436143002: Oilpan: add missing tracing of Page::m_chromeClient. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/WebKit/Source/core/page/Page.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/page/Page.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698