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

Unified 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: Disabled Created 4 years, 2 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ios/chrome/browser/ui/voice/voice_search_notification_names.h ('k') | ios/chrome/browser/voice/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/ui/voice/voice_search_notification_names.mm
diff --git a/ios/chrome/browser/ui/voice/voice_search_notification_names.mm b/ios/chrome/browser/ui/voice/voice_search_notification_names.mm
new file mode 100644
index 0000000000000000000000000000000000000000..0351dd18f65205c2ac4a4b959143e506d5f206b0
--- /dev/null
+++ b/ios/chrome/browser/ui/voice/voice_search_notification_names.mm
@@ -0,0 +1,22 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#import "ios/chrome/browser/ui/voice/voice_search_notification_names.h"
+
+NSString* const kVoiceSearchWillShowNotification =
+ @"kVoiceSearchWillShowNotification";
+NSString* const kVoiceSearchWillHideNotification =
+ @"kVoiceSearchWillHideNotification";
+
+NSString* const kTTSAudioReadyForPlaybackNotification =
+ @"kTTSAudioReadyForPlaybackNotification";
+NSString* const kTTSWillStartPlayingNotification =
+ @"kTTSWillStartPlayingNotification";
+NSString* const kTTSDidStopPlayingNotification =
+ @"kTTSDidStopPlayingNotification";
+
+NSString* const kVoiceSearchBarViewButtonSelectedNotification =
+ @"kVoiceSearchBarViewButtonSelectedNotification";
+NSString* const kVoiceSearchBarViewButtonDeselectedNotification =
+ @"kVoiceSearchBarViewButtonDeselectedNotification";
« no previous file with comments | « ios/chrome/browser/ui/voice/voice_search_notification_names.h ('k') | ios/chrome/browser/voice/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698