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

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

Issue 2514873002: [ObjC ARC] Converts ios/chrome/browser/ui/voice:voice to ARC.Automatically generated ARCMigrate c… (Closed)
Patch Set: 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
« no previous file with comments | « ios/chrome/browser/ui/voice/text_to_speech_player.mm ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #import "ios/chrome/browser/ui/voice/voice_search_notification_names.h" 5 #import "ios/chrome/browser/ui/voice/voice_search_notification_names.h"
6 6
7 #if !defined(__has_feature) || !__has_feature(objc_arc)
8 #error "This file requires ARC support."
9 #endif
10
7 NSString* const kVoiceSearchWillShowNotification = 11 NSString* const kVoiceSearchWillShowNotification =
8 @"kVoiceSearchWillShowNotification"; 12 @"kVoiceSearchWillShowNotification";
9 NSString* const kVoiceSearchWillHideNotification = 13 NSString* const kVoiceSearchWillHideNotification =
10 @"kVoiceSearchWillHideNotification"; 14 @"kVoiceSearchWillHideNotification";
11 15
12 NSString* const kTTSAudioReadyForPlaybackNotification = 16 NSString* const kTTSAudioReadyForPlaybackNotification =
13 @"kTTSAudioReadyForPlaybackNotification"; 17 @"kTTSAudioReadyForPlaybackNotification";
14 NSString* const kTTSWillStartPlayingNotification = 18 NSString* const kTTSWillStartPlayingNotification =
15 @"kTTSWillStartPlayingNotification"; 19 @"kTTSWillStartPlayingNotification";
16 NSString* const kTTSDidStopPlayingNotification = 20 NSString* const kTTSDidStopPlayingNotification =
17 @"kTTSDidStopPlayingNotification"; 21 @"kTTSDidStopPlayingNotification";
18 22
19 NSString* const kVoiceSearchBarViewButtonSelectedNotification = 23 NSString* const kVoiceSearchBarViewButtonSelectedNotification =
20 @"kVoiceSearchBarViewButtonSelectedNotification"; 24 @"kVoiceSearchBarViewButtonSelectedNotification";
21 NSString* const kVoiceSearchBarViewButtonDeselectedNotification = 25 NSString* const kVoiceSearchBarViewButtonDeselectedNotification =
22 @"kVoiceSearchBarViewButtonDeselectedNotification"; 26 @"kVoiceSearchBarViewButtonDeselectedNotification";
OLDNEW
« no previous file with comments | « ios/chrome/browser/ui/voice/text_to_speech_player.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698