Merge from Chromium at DEPS revision 273901

This commit was generated by merge_to_master.py.

Change-Id: Idef4504912b9dc019659369f57e1623ca2a481a8
diff --git a/Source/core/svg/SVGPolylineElement.cpp b/Source/core/svg/SVGPolylineElement.cpp
index d3c3323..92dd0a4 100644
--- a/Source/core/svg/SVGPolylineElement.cpp
+++ b/Source/core/svg/SVGPolylineElement.cpp
@@ -24,15 +24,10 @@
 
 namespace WebCore {
 
-inline SVGPolylineElement::SVGPolylineElement(Document& document)
+SVGPolylineElement::SVGPolylineElement(Document& document)
     : SVGPolyElement(SVGNames::polylineTag, document)
 {
     ScriptWrappable::init(this);
 }
 
-PassRefPtr<SVGPolylineElement> SVGPolylineElement::create(Document& document)
-{
-    return adoptRef(new SVGPolylineElement(document));
-}
-
 }