| OLD | NEW |
| (Empty) |
| 1 // Copyright 2015 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_HOST_FAKE_OAUTH_TOKEN_GETTER_H_ | |
| 6 #define REMOTING_HOST_FAKE_OAUTH_TOKEN_GETTER_H_ | |
| 7 | |
| 8 #include <string> | |
| 9 | |
| 10 #include "base/callback.h" | |
| 11 #include "remoting/host/oauth_token_getter.h" | |
| 12 | |
| 13 namespace remoting { | |
| 14 | |
| 15 class FakeOAuthTokenGetter : public OAuthTokenGetter { | |
| 16 public: | |
| 17 FakeOAuthTokenGetter(Status status, | |
| 18 const std::string& user_email, | |
| 19 const std::string& access_token); | |
| 20 ~FakeOAuthTokenGetter() override; | |
| 21 | |
| 22 // OAuthTokenGetter interface. | |
| 23 void CallWithToken(const TokenCallback& on_access_token) override; | |
| 24 void InvalidateCache() override; | |
| 25 | |
| 26 private: | |
| 27 Status status_; | |
| 28 std::string user_email_; | |
| 29 std::string access_token_; | |
| 30 }; | |
| 31 | |
| 32 } // namespace remoting | |
| 33 | |
| 34 #endif // REMOTING_HOST_FAKE_OAUTH_TOKEN_GETTER_H_ | |
| OLD | NEW |