2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2014 GitHub, Inc.
|
2014-08-13 04:12:43 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#ifndef ATOM_BROWSER_ATOM_ACCESS_TOKEN_STORE_H_
|
|
|
|
#define ATOM_BROWSER_ATOM_ACCESS_TOKEN_STORE_H_
|
|
|
|
|
|
|
|
#include "content/public/browser/access_token_store.h"
|
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
class AtomAccessTokenStore : public content::AccessTokenStore {
|
|
|
|
public:
|
|
|
|
AtomAccessTokenStore();
|
2016-06-22 06:41:56 +00:00
|
|
|
~AtomAccessTokenStore();
|
2014-08-13 04:12:43 +00:00
|
|
|
|
|
|
|
// content::AccessTokenStore:
|
2015-01-10 01:24:36 +00:00
|
|
|
void LoadAccessTokens(
|
2016-04-27 17:59:46 +00:00
|
|
|
const LoadAccessTokensCallback& callback) override;
|
2015-01-10 01:24:36 +00:00
|
|
|
void SaveAccessToken(const GURL& server_url,
|
|
|
|
const base::string16& access_token) override;
|
2014-08-13 04:12:43 +00:00
|
|
|
|
|
|
|
private:
|
2016-06-22 06:41:56 +00:00
|
|
|
void GetRequestContextOnUIThread();
|
|
|
|
void RespondOnOriginatingThread(const LoadAccessTokensCallback& callback);
|
|
|
|
|
|
|
|
scoped_refptr<net::URLRequestContextGetter> request_context_getter_;
|
|
|
|
|
2014-08-13 04:12:43 +00:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(AtomAccessTokenStore);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
2014-08-13 05:28:05 +00:00
|
|
|
#endif // ATOM_BROWSER_ATOM_ACCESS_TOKEN_STORE_H_
|