Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(148)

Side by Side Diff: ios/chrome/browser/ui/voice/voice_search_notification_names.mm

Issue 2449593002: [ios] Adds support for parsing Text-to-Speech search results. (Closed)
Patch Set: Fix AVFoundation dependency. Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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";
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698