Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(131)

Unified Diff: remoting/test/refresh_token_store.h

Issue 880273006: Adding the AccessTokenFetcher and Environment class to the app remoting test (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing one last windows compile issue Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/test/mock_access_token_fetcher.cc ('k') | remoting/test/refresh_token_store.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..6e287a0a62481cb788e30164eb0cfb617bdf2479
--- /dev/null
+++ b/remoting/test/refresh_token_store.h
@@ -0,0 +1,33 @@
+// 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 store and retrieve refresh tokens. This interface is provided to
+// allow for stubbing out the storage mechanism for testing.
+class RefreshTokenStore {
+ public:
+ RefreshTokenStore() {}
+ virtual ~RefreshTokenStore() {}
+
+ virtual std::string FetchRefreshToken() = 0;
+ virtual bool StoreRefreshToken(const std::string& refresh_token) = 0;
+
+ // Returns a RefreshTokenStore which reads/writes to a user specific token
+ // file on the local disk.
+ static scoped_ptr<RefreshTokenStore> OnDisk(const std::string& user_name);
+};
+
+} // namespace test
+} // namespace remoting
+
+#endif // REMOTING_TEST_REFRESH_TOKEN_STORE_H_
« no previous file with comments | « remoting/test/mock_access_token_fetcher.cc ('k') | remoting/test/refresh_token_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698