| Index: remoting/protocol/authentication_method.h
 | 
| diff --git a/remoting/protocol/authentication_method.h b/remoting/protocol/authentication_method.h
 | 
| index df7937b0fb269c7f81a9dd0660d92935ce623fd9..c2265d5e7d38e1b42138efbaf40203d61b453790 100644
 | 
| --- a/remoting/protocol/authentication_method.h
 | 
| +++ b/remoting/protocol/authentication_method.h
 | 
| @@ -24,6 +24,7 @@ class AuthenticationMethod {
 | 
|    enum MethodType {
 | 
|      INVALID,
 | 
|      SPAKE2,
 | 
| +    SPAKE2_PAIR,
 | 
|      THIRD_PARTY
 | 
|    };
 | 
|  
 | 
| @@ -35,6 +36,7 @@ class AuthenticationMethod {
 | 
|    // Constructors for various authentication methods.
 | 
|    static AuthenticationMethod Invalid();
 | 
|    static AuthenticationMethod Spake2(HashFunction hash_function);
 | 
| +  static AuthenticationMethod Spake2Pair();
 | 
|    static AuthenticationMethod ThirdParty();
 | 
|  
 | 
|    // Parses a string that defines an authentication method. Returns an
 | 
| 
 |