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

Unified Diff: Source/core/rendering/RenderLayerFilterInfo.cpp

Issue 319613004: Rename scheduleLayerUpdate now that it's only used for SVG filters. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rename all the things Created 6 years, 6 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/rendering/RenderLayer.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderLayerFilterInfo.cpp
diff --git a/Source/core/rendering/RenderLayerFilterInfo.cpp b/Source/core/rendering/RenderLayerFilterInfo.cpp
index 8a6e2b4bed817f02a18c9eca0a27dee4ffe3e74f..fef642e16b842954fd7bae43170b19920b2e6ee8 100644
--- a/Source/core/rendering/RenderLayerFilterInfo.cpp
+++ b/Source/core/rendering/RenderLayerFilterInfo.cpp
@@ -104,11 +104,11 @@ void RenderLayerFilterInfo::setRenderer(PassRefPtr<FilterEffectRenderer> rendere
void RenderLayerFilterInfo::notifyFinished(Resource*)
{
RenderObject* renderer = m_layer->renderer();
- // FIXME: This caller of scheduleLayerUpdate() is not correct. It's using the layer update
+ // FIXME: This caller of scheduleSVGFilterLayerUpdateHack() is not correct. It's using the layer update
// system to trigger a RenderLayer to go through the filter updating logic, but that might not
// even happen if this element is style sharing and RenderObject::setStyle() returns early.
// Filters need to find a better way to hook into the system.
- toElement(renderer->node())->scheduleLayerUpdate();
+ toElement(renderer->node())->scheduleSVGFilterLayerUpdateHack();
renderer->repaint();
}
« no previous file with comments | « Source/core/rendering/RenderLayer.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698