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

Unified Diff: Source/core/svg/SVGZoomAndPan.cpp

Issue 171333003: Pass implementation object to supplemental classes by reference (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 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
Index: Source/core/svg/SVGZoomAndPan.cpp
diff --git a/Source/core/svg/SVGZoomAndPan.cpp b/Source/core/svg/SVGZoomAndPan.cpp
index 714d0439f337a8ba53c705b153a7f2d5ff3d58c5..47386b83ca41f208aa0eaf731190cefd7c63b4f9 100644
--- a/Source/core/svg/SVGZoomAndPan.cpp
+++ b/Source/core/svg/SVGZoomAndPan.cpp
@@ -75,7 +75,7 @@ bool SVGZoomAndPan::parseZoomAndPan(const UChar*& start, const UChar* end)
return parseZoomAndPanInternal(start, end, m_zoomAndPan);
}
-void SVGZoomAndPan::setZoomAndPan(SVGViewSpec*, unsigned short, ExceptionState& exceptionState)
+void SVGZoomAndPan::setZoomAndPan(SVGViewSpec&, unsigned short, ExceptionState& exceptionState)
{
// SVGViewSpec and all of its content is read-only.
exceptionState.throwDOMException(NoModificationAllowedError, ExceptionMessages::readOnly());

Powered by Google App Engine
This is Rietveld 408576698