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

Unified Diff: third_party/WebKit/Source/core/svg/graphics/SVGImage.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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/svg/graphics/SVGImage.cpp
diff --git a/third_party/WebKit/Source/core/svg/graphics/SVGImage.cpp b/third_party/WebKit/Source/core/svg/graphics/SVGImage.cpp
index 1bd519d8f8c9af51c99610c23f2428fb6b450646..fb40160723e975ef54dfe3cae48bfde4a37f87cb 100644
--- a/third_party/WebKit/Source/core/svg/graphics/SVGImage.cpp
+++ b/third_party/WebKit/Source/core/svg/graphics/SVGImage.cpp
@@ -376,8 +376,8 @@ void SVGImage::drawInternal(SkCanvas* canvas, const SkPaint& paint, const FloatR
canvas->drawPicture(recording.get());
}
- if (imageObserver())
- imageObserver()->didDraw(this);
+ if (getImageObserver())
+ getImageObserver()->didDraw(this);
// Start any (SMIL) animations if needed. This will restart or continue
// animations if preceded by calls to resetAnimation or stopAnimation
@@ -445,7 +445,7 @@ void SVGImage::advanceAnimationForTesting()
// TODO(pdr): Actually advance the document timeline so CSS animations
// can be properly tested.
rootElement->document().page()->animator().serviceScriptedAnimations(rootElement->getCurrentTime());
- imageObserver()->animationAdvanced(this);
+ getImageObserver()->animationAdvanced(this);
}
}

Powered by Google App Engine
This is Rietveld 408576698