Index: src/wp-includes/class-wp-customize-setting.php
===================================================================
--- src/wp-includes/class-wp-customize-setting.php	(revision 28766)
+++ src/wp-includes/class-wp-customize-setting.php	(working copy)
@@ -130,8 +130,10 @@
 				 * The dynamic portion of the hook name, $this->id, refers to the setting ID.
 				 *
 				 * @since 3.4.0
+				 *
+				 * @param WP_Customize_Setting $this WP_Customize_Setting instance.
 				 */
-				do_action( 'customize_preview_' . $this->id );
+				do_action( 'customize_preview_' . $this->id, $this );
 		}
 	}
 
@@ -246,9 +248,10 @@
 				 *
 				 * @since 3.4.0
 				 *
-				 * @param mixed $value Value of the setting.
+				 * @param mixed                $value Value of the setting.
+				 * @param WP_Customize_Setting $this  WP_Customize_Setting instance.
 				 */
-				return do_action( 'customize_update_' . $this->type, $value );
+				return do_action( 'customize_update_' . $this->type, $value, $this );
 		}
 	}
 
