#ifndef REMOTING_CLIENT_PLUGIN_PEPPER_TOKEN_FETCHER_H_
#define REMOTING_CLIENT_PLUGIN_PEPPER_TOKEN_FETCHER_H_
#include "base/callback.h"
#include "base/memory/weak_ptr.h"
#include "remoting/protocol/third_party_client_authenticator.h"
namespace remoting {
class ChromotingInstance;
class PepperTokenFetcher
: public protocol::ThirdPartyClientAuthenticator::TokenFetcher {
public:
PepperTokenFetcher(base::WeakPtr<ChromotingInstance> plugin,
const std::string& host_public_key);
virtual ~PepperTokenFetcher();
virtual void FetchThirdPartyToken(
const GURL& token_url,
const std::string& scope,
const TokenFetchedCallback& token_fetched_callback) OVERRIDE;
void OnTokenFetched(const std::string& token,
const std::string& shared_secret);
private:
base::WeakPtr<ChromotingInstance> plugin_;
std::string host_public_key_;
TokenFetchedCallback token_fetched_callback_;
base::WeakPtrFactory<PepperTokenFetcher> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(PepperTokenFetcher);
};
}
#endif