diff --git a/src/wp-includes/class-wp-customize-setting.php b/src/wp-includes/class-wp-customize-setting.php
index 4bca442..b651813 100644
--- a/src/wp-includes/class-wp-customize-setting.php
+++ b/src/wp-includes/class-wp-customize-setting.php
@@ -131,7 +131,7 @@ class WP_Customize_Setting {
 				 *
 				 * @since 3.4.0
 				 */
-				do_action( 'customize_preview_' . $this->id );
+				do_action( 'customize_preview_' . $this->id, $this );
 		}
 	}
 
@@ -248,7 +248,7 @@ class WP_Customize_Setting {
 				 *
 				 * @param mixed $value Value of the setting.
 				 */
-				return do_action( 'customize_update_' . $this->type, $value );
+				return do_action( 'customize_update_' . $this->type, $value, $this );
 		}
 	}
 
