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

Side by Side Diff: third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.h

Issue 2547053003: s/ passed(...) / WTF::passed(...) / to avoid future ambiguity w/ base::Passed. (Closed)
Patch Set: Rebasing... Created 4 years 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2003, 2009, 2012 Apple Inc. All rights reserved. 2 * Copyright (C) 2003, 2009, 2012 Apple Inc. All rights reserved.
3 * 3 *
4 * Portions are Copyright (C) 1998 Netscape Communications Corporation. 4 * Portions are Copyright (C) 1998 Netscape Communications Corporation.
5 * 5 *
6 * Other contributors: 6 * Other contributors:
7 * Robert O'Callahan <roc+@cs.cmu.edu> 7 * Robert O'Callahan <roc+@cs.cmu.edu>
8 * David Baron <dbaron@fas.harvard.edu> 8 * David Baron <dbaron@fas.harvard.edu>
9 * Christian Biesinger <cbiesinger@web.de> 9 * Christian Biesinger <cbiesinger@web.de>
10 * Randall Jesup <rjesup@wgate.com> 10 * Randall Jesup <rjesup@wgate.com>
(...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after
517 void updateResizerStyle(); 517 void updateResizerStyle();
518 518
519 void updateScrollableAreaSet(bool hasOverflow); 519 void updateScrollableAreaSet(bool hasOverflow);
520 520
521 void updateCompositingLayersAfterScroll(); 521 void updateCompositingLayersAfterScroll();
522 522
523 PaintLayerScrollableAreaRareData* rareData() { return m_rareData.get(); } 523 PaintLayerScrollableAreaRareData* rareData() { return m_rareData.get(); }
524 524
525 PaintLayerScrollableAreaRareData& ensureRareData() { 525 PaintLayerScrollableAreaRareData& ensureRareData() {
526 if (!m_rareData) 526 if (!m_rareData)
527 m_rareData = makeUnique<PaintLayerScrollableAreaRareData>(); 527 m_rareData = WTF::makeUnique<PaintLayerScrollableAreaRareData>();
528 return *m_rareData.get(); 528 return *m_rareData.get();
529 } 529 }
530 530
531 PaintLayer& m_layer; 531 PaintLayer& m_layer;
532 532
533 PaintLayer* m_nextTopmostScrollChild; 533 PaintLayer* m_nextTopmostScrollChild;
534 PaintLayer* m_topmostScrollChild; 534 PaintLayer* m_topmostScrollChild;
535 535
536 // Keeps track of whether the layer is currently resizing, so events can cause 536 // Keeps track of whether the layer is currently resizing, so events can cause
537 // resizing to start and stop. 537 // resizing to start and stop.
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
586 586
587 DEFINE_TYPE_CASTS(PaintLayerScrollableArea, 587 DEFINE_TYPE_CASTS(PaintLayerScrollableArea,
588 ScrollableArea, 588 ScrollableArea,
589 scrollableArea, 589 scrollableArea,
590 scrollableArea->isPaintLayerScrollableArea(), 590 scrollableArea->isPaintLayerScrollableArea(),
591 scrollableArea.isPaintLayerScrollableArea()); 591 scrollableArea.isPaintLayerScrollableArea());
592 592
593 } // namespace blink 593 } // namespace blink
594 594
595 #endif // LayerScrollableArea_h 595 #endif // LayerScrollableArea_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/paint/PaintLayer.cpp ('k') | third_party/WebKit/Source/core/paint/PaintLayerStackingNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698