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

Side by Side Diff: ios/public/provider/chrome/browser/voice/voice_search_controller.mm

Issue 2847863005: [ObjC ARC] Converts ios/public/provider/chrome/browser/voice:voice to ARC. (Closed)
Patch Set: remove empty braces Created 3 years, 7 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 unified diff | Download patch
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 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/public/provider/chrome/browser/voice/voice_search_controller.h" 5 #import "ios/public/provider/chrome/browser/voice/voice_search_controller.h"
6 6
7 #import <UIKit/UIKit.h> 7 #import <UIKit/UIKit.h>
8 8
9 #if !defined(__has_feature) || !__has_feature(objc_arc)
10 #error "This file requires ARC support."
11 #endif
12
9 VoiceSearchController::VoiceSearchController() {} 13 VoiceSearchController::VoiceSearchController() {}
10 14
11 VoiceSearchController::~VoiceSearchController() {} 15 VoiceSearchController::~VoiceSearchController() {}
12 16
13 void VoiceSearchController::SetDelegate( 17 void VoiceSearchController::SetDelegate(
14 id<VoiceSearchControllerDelegate> delegate) {} 18 id<VoiceSearchControllerDelegate> delegate) {}
15 19
16 void VoiceSearchController::PrepareToAppear() {} 20 void VoiceSearchController::PrepareToAppear() {}
17 21
18 void VoiceSearchController::StartRecognition( 22 void VoiceSearchController::StartRecognition(
(...skipping 10 matching lines...) Expand all
29 33
30 bool VoiceSearchController::IsVisible() { 34 bool VoiceSearchController::IsVisible() {
31 return false; 35 return false;
32 } 36 }
33 37
34 bool VoiceSearchController::IsPlayingAudio() { 38 bool VoiceSearchController::IsPlayingAudio() {
35 return false; 39 return false;
36 } 40 }
37 41
38 void VoiceSearchController::DismissMicPermissionsHelp() {} 42 void VoiceSearchController::DismissMicPermissionsHelp() {}
OLDNEW
« no previous file with comments | « ios/public/provider/chrome/browser/voice/BUILD.gn ('k') | ios/public/provider/chrome/browser/voice/voice_search_language.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698