| OLD | NEW |
| 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 #ifndef IOS_PUBLIC_PROVIDER_CHROME_BROWSER_VOICE_VOICE_SEARCH_CONTROLLER_IMPL_H_ | 5 #ifndef IOS_PUBLIC_PROVIDER_CHROME_BROWSER_VOICE_VOICE_SEARCH_CONTROLLER_H_ |
| 6 #define IOS_PUBLIC_PROVIDER_CHROME_BROWSER_VOICE_VOICE_SEARCH_CONTROLLER_IMPL_H_ | 6 #define IOS_PUBLIC_PROVIDER_CHROME_BROWSER_VOICE_VOICE_SEARCH_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
| 9 | 9 |
| 10 @class Tab; | 10 @class Tab; |
| 11 @class UIViewController; | 11 @class UIViewController; |
| 12 @protocol VoiceSearchControllerDelegate; | 12 @protocol VoiceSearchControllerDelegate; |
| 13 | 13 |
| 14 // TODO(crbug.com/607204): Convert to Objective-C class. | 14 // TODO(crbug.com/607204): Convert to Objective-C class. |
| 15 class VoiceSearchController | 15 class VoiceSearchController |
| 16 : public base::RefCountedThreadSafe<VoiceSearchController> { | 16 : public base::RefCountedThreadSafe<VoiceSearchController> { |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 | 50 |
| 51 protected: | 51 protected: |
| 52 virtual ~VoiceSearchController(); | 52 virtual ~VoiceSearchController(); |
| 53 | 53 |
| 54 private: | 54 private: |
| 55 friend class base::RefCountedThreadSafe<VoiceSearchController>; | 55 friend class base::RefCountedThreadSafe<VoiceSearchController>; |
| 56 | 56 |
| 57 DISALLOW_COPY_AND_ASSIGN(VoiceSearchController); | 57 DISALLOW_COPY_AND_ASSIGN(VoiceSearchController); |
| 58 }; | 58 }; |
| 59 | 59 |
| 60 #endif // IOS_PUBLIC_PROVIDER_CHROME_BROWSER_VOICE_VOICE_SEARCH_CONTROLLER_IMPL
_H_ | 60 #endif // IOS_PUBLIC_PROVIDER_CHROME_BROWSER_VOICE_VOICE_SEARCH_CONTROLLER_H_ |
| OLD | NEW |