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

Side by Side Diff: ios/public/provider/chrome/browser/voice/logo_animation_controller.h

Issue 2603973002: Import Objective C Frameworks (Closed)
Patch Set: only ios Created 3 years, 11 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 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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698