@@ -105,9 +105,10 @@ Polymer_PropertiesChanged.prototype._shouldPropertyChange = function(property, v
105105* @param {string } name Name of attribute that changed
106106* @param {?string } old Old attribute value
107107* @param {?string } value New attribute value
108+ * @param {?string } namespace Attribute namespace.
108109* @return {void }
109110*/
110- Polymer_PropertiesChanged . prototype . attributeChangedCallback = function ( name , old , value ) { } ;
111+ Polymer_PropertiesChanged . prototype . attributeChangedCallback = function ( name , old , value , namespace ) { } ;
111112/**
112113* @param {string } attribute Name of attribute to deserialize.
113114* @param {?string } value of the attribute.
@@ -972,9 +973,10 @@ Polymer_LegacyElementMixin.prototype._initializeProperties = function(){};
972973* @param {string } name Name of attribute.
973974* @param {?string } old Old value of attribute.
974975* @param {?string } value Current value of attribute.
976+ * @param {?string } namespace Attribute namespace.
975977* @return {void }
976978*/
977- Polymer_LegacyElementMixin . prototype . attributeChangedCallback = function ( name , old , value ) { } ;
979+ Polymer_LegacyElementMixin . prototype . attributeChangedCallback = function ( name , old , value , namespace ) { } ;
978980/**
979981* @override
980982* @return {void }
@@ -1391,7 +1393,7 @@ Polymer_DisableUpgradeMixin.prototype._enableProperties = function(){};
13911393/**
13921394* @override
13931395*/
1394- Polymer_DisableUpgradeMixin . prototype . attributeChangedCallback = function ( name , old , value ) { } ;
1396+ Polymer_DisableUpgradeMixin . prototype . attributeChangedCallback = function ( name , old , value , namespace ) { } ;
13951397/**
13961398* @override
13971399*/
0 commit comments