Chromium Code Reviews| Index: remoting/test/refresh_token_store.h |
| diff --git a/remoting/test/refresh_token_store.h b/remoting/test/refresh_token_store.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..41a7fa37f14f5fa30487d55031e3e2cd64c392d0 |
| --- /dev/null |
| +++ b/remoting/test/refresh_token_store.h |
| @@ -0,0 +1,34 @@ |
| +// Copyright 2015 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_TEST_REFRESH_TOKEN_STORE_H_ |
| +#define REMOTING_TEST_REFRESH_TOKEN_STORE_H_ |
| + |
| +#include <string> |
| + |
| +#include "base/memory/scoped_ptr.h" |
| + |
| +namespace remoting { |
| +namespace test { |
| + |
| +// Used to allow classes which use this functionality to remove the file system |
| +// dependency for testing. |
|
Wez
2015/02/19 22:00:24
What functionality?
joedow
2015/02/20 02:58:36
Done.
|
| +class RefreshTokenStoreInterface { |
|
Wez
2015/02/19 22:00:24
RefreshTokenStore - Chromium style has the interfa
joedow
2015/02/20 02:58:36
Done.
|
| + public: |
| + RefreshTokenStoreInterface() {} |
| + virtual ~RefreshTokenStoreInterface() {} |
| + |
| + virtual std::string ReadRefreshTokenFromDisk( |
|
Wez
2015/02/19 22:00:24
This name assumes an on-disk implementation, but t
joedow
2015/02/20 02:58:36
Done.
|
| + const std::string& user_name) = 0; |
| + virtual bool WriteRefreshTokenToDisk( |
| + const std::string& user_name, |
| + const std::string& refresh_token) = 0; |
| +}; |
| + |
| +scoped_ptr<RefreshTokenStoreInterface> GetRefreshTokenStoreForDisk(); |
|
Wez
2015/02/19 22:00:24
Suggest making this a static OnDisk() method in Re
joedow
2015/02/20 02:58:36
Done.
|
| + |
| +} // namespace test |
| +} // namespace remoting |
| + |
| +#endif // REMOTING_TEST_REFRESH_TOKEN_STORE_H_ |