| Index: services/authentication/dummy_authentication_app.cc
|
| diff --git a/services/authentication/dummy_authentication_app.cc b/services/authentication/dummy_authentication_app.cc
|
| index b98c15e54715e17f8fb3324027fe2ddd849f5439..4ef983cfeef7b21aecfb965dc5e81937120a7742 100644
|
| --- a/services/authentication/dummy_authentication_app.cc
|
| +++ b/services/authentication/dummy_authentication_app.cc
|
| @@ -49,6 +49,13 @@ class DummyAuthenticationApplication
|
| }
|
| void ClearOAuth2Token(const mojo::String& token) override {}
|
|
|
| + void GetOAuth2DeviceCode(mojo::Array<mojo::String> scopes,
|
| + const GetOAuth2TokenCallback& callback) override {
|
| + callback.Run(nullptr, "Not implemented");
|
| + }
|
| +
|
| + void AddAccount(const mojo::String& device_code) override {}
|
| +
|
| mojo::BindingSet<AuthenticationService> bindings_;
|
| };
|
|
|
|
|