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

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

Issue 1215973002: Oilpan: improve ScrollableArea handling. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: review-induced improvements Created 5 years, 5 months 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/page/Page.h ('k') | Source/core/page/scrolling/ScrollingCoordinator.h » ('j') | 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 525 matching lines...) Expand 10 before | Expand all | Expand 10 after
536 536
537 DEFINE_TRACE(Page) 537 DEFINE_TRACE(Page)
538 { 538 {
539 #if ENABLE(OILPAN) 539 #if ENABLE(OILPAN)
540 visitor->trace(m_animator); 540 visitor->trace(m_animator);
541 visitor->trace(m_dragCaretController); 541 visitor->trace(m_dragCaretController);
542 visitor->trace(m_dragController); 542 visitor->trace(m_dragController);
543 visitor->trace(m_focusController); 543 visitor->trace(m_focusController);
544 visitor->trace(m_contextMenuController); 544 visitor->trace(m_contextMenuController);
545 visitor->trace(m_pointerLockController); 545 visitor->trace(m_pointerLockController);
546 visitor->trace(m_scrollingCoordinator);
546 visitor->trace(m_undoStack); 547 visitor->trace(m_undoStack);
547 visitor->trace(m_mainFrame); 548 visitor->trace(m_mainFrame);
548 visitor->trace(m_validationMessageClient); 549 visitor->trace(m_validationMessageClient);
549 visitor->trace(m_multisamplingChangedObservers); 550 visitor->trace(m_multisamplingChangedObservers);
550 visitor->trace(m_frameHost); 551 visitor->trace(m_frameHost);
551 HeapSupplementable<Page>::trace(visitor); 552 HeapSupplementable<Page>::trace(visitor);
552 #endif 553 #endif
553 PageLifecycleNotifier::trace(visitor); 554 PageLifecycleNotifier::trace(visitor);
554 } 555 }
555 556
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
594 { 595 {
595 } 596 }
596 597
597 Page::PageClients::~PageClients() 598 Page::PageClients::~PageClients()
598 { 599 {
599 } 600 }
600 601
601 template class CORE_TEMPLATE_EXPORT WillBeHeapSupplement<Page>; 602 template class CORE_TEMPLATE_EXPORT WillBeHeapSupplement<Page>;
602 603
603 } // namespace blink 604 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/page/Page.h ('k') | Source/core/page/scrolling/ScrollingCoordinator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698