| Index: content/public/browser/access_token_store.h
|
| diff --git a/content/browser/geolocation/access_token_store.h b/content/public/browser/access_token_store.h
|
| similarity index 91%
|
| rename from content/browser/geolocation/access_token_store.h
|
| rename to content/public/browser/access_token_store.h
|
| index 5fc2c57af18f9e35f483beb3201969ec451d16d4..1dfaabfe9a7f81b347bfa1ec7a65ecd5b0c3ca27 100644
|
| --- a/content/browser/geolocation/access_token_store.h
|
| +++ b/content/public/browser/access_token_store.h
|
| @@ -10,8 +10,8 @@
|
| // This API is provided as abstract base classes to allow mocking and testing
|
| // of clients, without dependency on browser process singleton objects etc.
|
|
|
| -#ifndef CONTENT_BROWSER_GEOLOCATION_ACCESS_TOKEN_STORE_H_
|
| -#define CONTENT_BROWSER_GEOLOCATION_ACCESS_TOKEN_STORE_H_
|
| +#ifndef CONTENT_PUBLIC_BROWSER_ACCESS_TOKEN_STORE_H_
|
| +#define CONTENT_PUBLIC_BROWSER_ACCESS_TOKEN_STORE_H_
|
| #pragma once
|
|
|
| #include <map>
|
| @@ -28,6 +28,8 @@ namespace net {
|
| class URLRequestContextGetter;
|
| }
|
|
|
| +namespace content {
|
| +
|
| // Provides storage for the access token used in the network request.
|
| class AccessTokenStore : public base::RefCountedThreadSafe<AccessTokenStore> {
|
| public:
|
| @@ -57,4 +59,6 @@ class AccessTokenStore : public base::RefCountedThreadSafe<AccessTokenStore> {
|
| DISALLOW_COPY_AND_ASSIGN(AccessTokenStore);
|
| };
|
|
|
| -#endif // CONTENT_BROWSER_GEOLOCATION_ACCESS_TOKEN_STORE_H_
|
| +} // namespace content
|
| +
|
| +#endif // CONTENT_PUBLIC_BROWSER_ACCESS_TOKEN_STORE_H_
|
|
|