chromium/ios/chrome/browser/ui/authentication/identity_chooser/identity_chooser_transition_delegate.h

// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef IOS_CHROME_BROWSER_UI_AUTHENTICATION_IDENTITY_CHOOSER_IDENTITY_CHOOSER_TRANSITION_DELEGATE_H_
#define IOS_CHROME_BROWSER_UI_AUTHENTICATION_IDENTITY_CHOOSER_IDENTITY_CHOOSER_TRANSITION_DELEGATE_H_

#import <UIKit/UIKit.h>

// Transition Delegate for the IdentityChooser. It is presenting it as a modal.
@interface IdentityChooserTransitionDelegate
    : NSObject<UIViewControllerTransitioningDelegate>

// Origin of the animation. Must be in the window coordinates.
@property(nonatomic, assign) CGPoint origin;

@end

#endif  // IOS_CHROME_BROWSER_UI_AUTHENTICATION_IDENTITY_CHOOSER_IDENTITY_CHOOSER_TRANSITION_DELEGATE_H_