Index: chrome/browser/resources/shared/js/cr.js |
diff --git a/chrome/browser/resources/shared/js/cr.js b/chrome/browser/resources/shared/js/cr.js |
index 6686269d897f1ddd7c7f396529506bdbf3e49e4b..645d90835470e0bbf3a64fd23fd3bcbf76a6bf00 100644 |
--- a/chrome/browser/resources/shared/js/cr.js |
+++ b/chrome/browser/resources/shared/js/cr.js |
@@ -170,9 +170,11 @@ const cr = (function() { |
* for. |
* @param {cr.PropertyKind} kind The kind of property we are getting the |
* setter for. |
+ * @param {function(*):void} opt_setHook A function to run after the property |
+ * is set, but before the propertyChange event is fired. |
* @return {function(*):void} The function to use as a setter. |
*/ |
- function getSetter(name, kind) { |
+ function getSetter(name, kind, opt_setHook) { |
switch (kind) { |
case PropertyKind.JS: |
var privateName = name + '_'; |
@@ -180,6 +182,8 @@ const cr = (function() { |
var oldValue = this[privateName]; |
if (value !== oldValue) { |
this[privateName] = value; |
+ if (opt_setHook) |
+ opt_setHook.call(this, value); |
dispatchPropertyChange(this, name, value, oldValue); |
} |
}; |
@@ -189,6 +193,8 @@ const cr = (function() { |
var oldValue = this[name]; |
if (value !== oldValue) { |
this.setAttribute(name, value); |
+ if (opt_setHook) |
+ opt_setHook.call(this, value); |
dispatchPropertyChange(this, name, value, oldValue); |
} |
}; |
@@ -201,6 +207,8 @@ const cr = (function() { |
this.setAttribute(name, name); |
else |
this.removeAttribute(name); |
+ if (opt_setHook) |
+ opt_setHook.call(this, value); |
dispatchPropertyChange(this, name, value, oldValue); |
} |
}; |
@@ -213,9 +221,11 @@ const cr = (function() { |
* @param {!Object} The object to define the property for. |
* @param {string} The name of the property. |
* @param {cr.PropertyKind=} opt_kind What kind of underlying storage to use. |
- * @param {*} opt_defaultValue The default value. |
+ * @param {*} opt_default The default value. |
+ * @param {function(*):void} opt_setHook A function to run after the |
+ * property is set, but before the propertyChange event is fired. |
*/ |
- function defineProperty(obj, name, opt_kind, opt_default) { |
+ function defineProperty(obj, name, opt_kind, opt_default, opt_setHook) { |
if (typeof obj == 'function') |
obj = obj.prototype; |
@@ -231,7 +241,9 @@ const cr = (function() { |
} |
if (!obj.__lookupSetter__(name)) { |
- obj.__defineSetter__(name, getSetter(name, kind)); |
+ if (opt_kind == PropertyKind.BOOL_ATTR && opt_default) |
arv (Not doing code reviews)
2011/02/08 19:16:48
Same for PropertyKind.ATTR
Actually, I think we s
|
+ throw Error('opt_default for BOOl_ATTR properties must be false'); |
+ obj.__defineSetter__(name, getSetter(name, kind, opt_setHook)); |
} |
} |