Index: remoting/ios/facade/remoting_oauth_authentication.h |
diff --git a/remoting/ios/facade/remoting_oauth_authentication.h b/remoting/ios/facade/remoting_oauth_authentication.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..3fc22310fe7ef130030a3f6d5a69f9848c8ef8b5 |
--- /dev/null |
+++ b/remoting/ios/facade/remoting_oauth_authentication.h |
@@ -0,0 +1,19 @@ |
+// Copyright 2017 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef REMOTING_IOS_FACADE_REMOTING_OAUTH_AUTHENTICATION_H_ |
+#define REMOTING_IOS_FACADE_REMOTING_OAUTH_AUTHENTICATION_H_ |
+ |
+#import "remoting/ios/facade/remoting_authentication.h" |
+ |
+// The OAuth implementation for RemotingAuthentication. |
+@interface RemotingOAuthAuthentication : NSObject<RemotingAuthentication> |
+ |
+// Provide an |authorizationCode| to authenticate a user as the first time user |
+// of the application or OAuth Flow. |
+- (void)authenticateWithAuthorizationCode:(NSString*)authorizationCode; |
+ |
+@end |
+ |
+#endif // REMOTING_IOS_FACADE_REMOTING_OAUTH_AUTHENTICATION_H_ |