| OLD | NEW |
| 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 #ifndef IOS_PUBLIC_PROVIDER_CHROME_BROWSER_VOICE_LOGO_ANIMATION_CONTROLLER_H_ | 5 #ifndef IOS_PUBLIC_PROVIDER_CHROME_BROWSER_VOICE_LOGO_ANIMATION_CONTROLLER_H_ |
| 6 #define IOS_PUBLIC_PROVIDER_CHROME_BROWSER_VOICE_LOGO_ANIMATION_CONTROLLER_H_ | 6 #define IOS_PUBLIC_PROVIDER_CHROME_BROWSER_VOICE_LOGO_ANIMATION_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include <Foundation/Foundation.h> | 8 #import <Foundation/Foundation.h> |
| 9 | 9 |
| 10 @protocol LogoAnimationControllerOwner; | 10 @protocol LogoAnimationControllerOwner; |
| 11 @protocol LogoAnimationControllerOwnerOwner; | 11 @protocol LogoAnimationControllerOwnerOwner; |
| 12 | 12 |
| 13 typedef NS_ENUM(NSUInteger, LogoAnimationControllerLogoState) { | 13 typedef NS_ENUM(NSUInteger, LogoAnimationControllerLogoState) { |
| 14 // A state in which the logo is displayed. | 14 // A state in which the logo is displayed. |
| 15 LogoAnimationControllerLogoStateLogo, | 15 LogoAnimationControllerLogoStateLogo, |
| 16 // A state in which the microphone icon is displayed. | 16 // A state in which the microphone icon is displayed. |
| 17 LogoAnimationControllerLogoStateMic, | 17 LogoAnimationControllerLogoStateMic, |
| 18 }; | 18 }; |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 // endpoint in the animation if it is in a state where it can be displayed. | 55 // endpoint in the animation if it is in a state where it can be displayed. |
| 56 @protocol LogoAnimationControllerOwnerOwner | 56 @protocol LogoAnimationControllerOwnerOwner |
| 57 | 57 |
| 58 // The LogoAnimationControllerOwner held by the conforming object. | 58 // The LogoAnimationControllerOwner held by the conforming object. |
| 59 @property(nonatomic, readonly) id<LogoAnimationControllerOwner> | 59 @property(nonatomic, readonly) id<LogoAnimationControllerOwner> |
| 60 logoAnimationControllerOwner; | 60 logoAnimationControllerOwner; |
| 61 | 61 |
| 62 @end | 62 @end |
| 63 | 63 |
| 64 #endif // IOS_PUBLIC_PROVIDER_CHROME_BROWSER_VOICE_LOGO_ANIMATION_CONTROLLER_H_ | 64 #endif // IOS_PUBLIC_PROVIDER_CHROME_BROWSER_VOICE_LOGO_ANIMATION_CONTROLLER_H_ |
| OLD | NEW |