blob: 8fbb25367898d4216b6880842ee288b938b7f326 [file] [log] [blame]
// Copyright (c) 2012 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 CONTENT_SHELL_GEOLOCATION_SHELL_ACCESS_TOKEN_STORE_H_
#define CONTENT_SHELL_GEOLOCATION_SHELL_ACCESS_TOKEN_STORE_H_
#include "base/memory/ref_counted.h"
#include "content/public/browser/access_token_store.h"
#include "net/url_request/url_request_context_getter.h"
namespace content {
class ShellBrowserContext;
// Dummy access token store used to initialise the network location provider.
class ShellAccessTokenStore : public content::AccessTokenStore {
public:
explicit ShellAccessTokenStore(
content::ShellBrowserContext* shell_browser_context);
private:
virtual ~ShellAccessTokenStore();
void GetRequestContextOnUIThread(
content::ShellBrowserContext* shell_browser_context);
void RespondOnOriginatingThread(const LoadAccessTokensCallbackType& callback);
// AccessTokenStore
virtual void LoadAccessTokens(
const LoadAccessTokensCallbackType& callback) override;
virtual void SaveAccessToken(
const GURL& server_url, const base::string16& access_token) override;
content::ShellBrowserContext* shell_browser_context_;
scoped_refptr<net::URLRequestContextGetter> system_request_context_;
DISALLOW_COPY_AND_ASSIGN(ShellAccessTokenStore);
};
} // namespace content
#endif // CONTENT_SHELL_GEOLOCATION_SHELL_ACCESS_TOKEN_STORE_H_