OLD | NEW |
(Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef REMOTING_IOS_FACADE_REMOTING_OAUTH_AUTHENTICATION_H_ |
| 6 #define REMOTING_IOS_FACADE_REMOTING_OAUTH_AUTHENTICATION_H_ |
| 7 |
| 8 #import "remoting/ios/facade/remoting_authentication.h" |
| 9 |
| 10 // The OAuth implementation for RemotingAuthentication. |
| 11 @interface RemotingOAuthAuthentication : NSObject<RemotingAuthentication> |
| 12 |
| 13 // Provide an |authorizationCode| to authenticate a user as the first time user |
| 14 // of the application or OAuth Flow. |
| 15 - (void)authenticateWithAuthorizationCode:(NSString*)authorizationCode; |
| 16 |
| 17 @end |
| 18 |
| 19 #endif // REMOTING_IOS_FACADE_REMOTING_OAUTH_AUTHENTICATION_H_ |
OLD | NEW |