| Index: chrome/browser/ui/webui/options/chromeos/change_picture_options_handler.cc
|
| diff --git a/chrome/browser/ui/webui/options/chromeos/change_picture_options_handler.cc b/chrome/browser/ui/webui/options/chromeos/change_picture_options_handler.cc
|
| index 52bed9d6e0d75a89c1f7c13dca555e1b7bb495d8..5d6d7748c1de8a25ef7c76ccaf5be150ef065810 100644
|
| --- a/chrome/browser/ui/webui/options/chromeos/change_picture_options_handler.cc
|
| +++ b/chrome/browser/ui/webui/options/chromeos/change_picture_options_handler.cc
|
| @@ -215,13 +215,18 @@ void ChangePictureOptionsHandler::HandleChooseFile(
|
| void ChangePictureOptionsHandler::HandleTakePhoto(
|
| const base::ListValue* args) {
|
| DCHECK(args->empty());
|
| +#if !defined(USE_ATHENA)
|
| + // crbug.com/408733
|
| ash::PlaySystemSoundIfSpokenFeedback(SOUND_CAMERA_SNAP);
|
| +#endif
|
| }
|
|
|
| void ChangePictureOptionsHandler::HandleDiscardPhoto(
|
| const base::ListValue* args) {
|
| DCHECK(args->empty());
|
| +#if !defined(USE_ATHENA)
|
| ash::PlaySystemSoundIfSpokenFeedback(SOUND_OBJECT_DELETE);
|
| +#endif
|
| }
|
|
|
| void ChangePictureOptionsHandler::HandlePhotoTaken(
|
|
|