Index: ash/system/audio/volume_view.cc |
diff --git a/ash/system/audio/volume_view.cc b/ash/system/audio/volume_view.cc |
index 06ab43fb912a77d9447be551f21e0b2255846ac4..80565463ae0243da486032ee04d6378dd5150bfb 100644 |
--- a/ash/system/audio/volume_view.cc |
+++ b/ash/system/audio/volume_view.cc |
@@ -175,9 +175,6 @@ void VolumeView::SetVolumeLevel(float percent) { |
// slider value if the change is less than 1%. |
if (std::abs(percent-slider_->value()) < 0.01) |
return; |
- // The change in volume will be reflected via accessibility system events, |
- // so we prevent the UI event from being sent here. |
- slider_->set_enable_accessibility_events(false); |
slider_->SetValue(percent); |
// It is possible that the volume was (un)muted, but the actual volume level |
// did not change. In that case, setting the value of the slider won't |