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

Unified Diff: Source/core/paint/FilterPainter.cpp

Issue 910083002: Constify and use LayoutStyle reference in layout/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebaselined again Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/layout/svg/SVGTextMetricsBuilder.cpp ('k') | Source/core/paint/SVGInlineTextBoxPainter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/paint/FilterPainter.cpp
diff --git a/Source/core/paint/FilterPainter.cpp b/Source/core/paint/FilterPainter.cpp
index ef169a6f965acac75f1e871f5190f5a965b93b3c..eeb3456eac51dbfa889866943a5bbf9bedccec6e 100644
--- a/Source/core/paint/FilterPainter.cpp
+++ b/Source/core/paint/FilterPainter.cpp
@@ -58,7 +58,7 @@ FilterPainter::FilterPainter(Layer& renderLayer, GraphicsContext* context, const
ASSERT(m_renderer);
if (RuntimeEnabledFeatures::slimmingPaintEnabled()) {
// FIXME: verify whether this FilterOperations object and the ImageFilter object constructed above represent the same effect.
- FilterOperations filterOperations(renderLayer.computeFilterOperations(m_renderer->style()));
+ FilterOperations filterOperations(renderLayer.computeFilterOperations(m_renderer->styleRef()));
OwnPtr<BeginFilterDisplayItem> filterDisplayItem = BeginFilterDisplayItem::create(m_renderer->displayItemClient(), imageFilter, rootRelativeBounds, filterOperations);
ASSERT(context->displayItemList());
« no previous file with comments | « Source/core/layout/svg/SVGTextMetricsBuilder.cpp ('k') | Source/core/paint/SVGInlineTextBoxPainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698