| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #import "ios/chrome/browser/ui/voice/voice_search_notification_names.h" |
| 6 |
| 7 NSString* const kVoiceSearchWillShowNotification = |
| 8 @"kVoiceSearchWillShowNotification"; |
| 9 NSString* const kVoiceSearchWillHideNotification = |
| 10 @"kVoiceSearchWillHideNotification"; |
| 11 |
| 12 NSString* const kTTSAudioReadyForPlaybackNotification = |
| 13 @"kTTSAudioReadyForPlaybackNotification"; |
| 14 NSString* const kTTSWillStartPlayingNotification = |
| 15 @"kTTSWillStartPlayingNotification"; |
| 16 NSString* const kTTSDidStopPlayingNotification = |
| 17 @"kTTSDidStopPlayingNotification"; |
| 18 |
| 19 NSString* const kVoiceSearchBarViewButtonSelectedNotification = |
| 20 @"kVoiceSearchBarViewButtonSelectedNotification"; |
| 21 NSString* const kVoiceSearchBarViewButtonDeselectedNotification = |
| 22 @"kVoiceSearchBarViewButtonDeselectedNotification"; |
| OLD | NEW |