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

Side by Side Diff: third_party/WebKit/Source/core/paint/PaintLayer.cpp

Issue 1774943003: blink: Rename platform/ methods to prefix with get when they collide. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clash-platform: rebase-yayyyyyyyy Created 4 years, 9 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 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 2581 matching lines...) Expand 10 before | Expand all | Expand 10 after
2592 updateDescendantDependentFlags(); 2592 updateDescendantDependentFlags();
2593 2593
2594 updateTransform(oldStyle, layoutObject()->styleRef()); 2594 updateTransform(oldStyle, layoutObject()->styleRef());
2595 updateFilters(oldStyle, layoutObject()->styleRef()); 2595 updateFilters(oldStyle, layoutObject()->styleRef());
2596 2596
2597 setNeedsCompositingInputsUpdate(); 2597 setNeedsCompositingInputsUpdate();
2598 } 2598 }
2599 2599
2600 bool PaintLayer::scrollsOverflow() const 2600 bool PaintLayer::scrollsOverflow() const
2601 { 2601 {
2602 if (PaintLayerScrollableArea* scrollableArea = this->scrollableArea()) 2602 if (PaintLayerScrollableArea* scrollableArea = this->getScrollableArea())
2603 return scrollableArea->scrollsOverflow(); 2603 return scrollableArea->scrollsOverflow();
2604 2604
2605 return false; 2605 return false;
2606 } 2606 }
2607 2607
2608 namespace { 2608 namespace {
2609 2609
2610 FilterOperations computeFilterOperationsHandleReferenceFilters(const FilterOpera tions& filters, float effectiveZoom, Node* enclosingNode) 2610 FilterOperations computeFilterOperationsHandleReferenceFilters(const FilterOpera tions& filters, float effectiveZoom, Node* enclosingNode)
2611 { 2611 {
2612 if (filters.hasReferenceFilter()) { 2612 if (filters.hasReferenceFilter()) {
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
2836 2836
2837 void showLayerTree(const blink::LayoutObject* layoutObject) 2837 void showLayerTree(const blink::LayoutObject* layoutObject)
2838 { 2838 {
2839 if (!layoutObject) { 2839 if (!layoutObject) {
2840 fprintf(stderr, "Cannot showLayerTree. Root is (nil)\n"); 2840 fprintf(stderr, "Cannot showLayerTree. Root is (nil)\n");
2841 return; 2841 return;
2842 } 2842 }
2843 showLayerTree(layoutObject->enclosingLayer()); 2843 showLayerTree(layoutObject->enclosingLayer());
2844 } 2844 }
2845 #endif 2845 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/paint/PaintLayer.h ('k') | third_party/WebKit/Source/core/paint/PaintLayerPainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698