| Index: device/geolocation/access_token_store.h
|
| diff --git a/content/public/browser/access_token_store.h b/device/geolocation/access_token_store.h
|
| similarity index 84%
|
| rename from content/public/browser/access_token_store.h
|
| rename to device/geolocation/access_token_store.h
|
| index a8edecb39c08a3a4b7fe4ee9c0551b3c9de05256..e3938fd886fec5cd04508a3f178d5d48452b2ece 100644
|
| --- a/content/public/browser/access_token_store.h
|
| +++ b/device/geolocation/access_token_store.h
|
| @@ -10,21 +10,21 @@
|
| // 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_PUBLIC_BROWSER_ACCESS_TOKEN_STORE_H_
|
| -#define CONTENT_PUBLIC_BROWSER_ACCESS_TOKEN_STORE_H_
|
| +#ifndef DEVICE_GEOLOCATION_ACCESS_TOKEN_STORE_H_
|
| +#define DEVICE_GEOLOCATION_ACCESS_TOKEN_STORE_H_
|
|
|
| #include <map>
|
|
|
| #include "base/callback.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "base/strings/string16.h"
|
| -#include "content/common/content_export.h"
|
| +#include "device/geolocation/geolocation_export.h"
|
| #include "net/url_request/url_request_context_getter.h"
|
| #include "url/gurl.h"
|
|
|
| class GURL;
|
|
|
| -namespace content {
|
| +namespace device {
|
|
|
| // Provides storage for the access token used in the network request.
|
| class AccessTokenStore : public base::RefCountedThreadSafe<AccessTokenStore> {
|
| @@ -47,10 +47,10 @@ class AccessTokenStore : public base::RefCountedThreadSafe<AccessTokenStore> {
|
|
|
| protected:
|
| friend class base::RefCountedThreadSafe<AccessTokenStore>;
|
| - CONTENT_EXPORT AccessTokenStore() {}
|
| - CONTENT_EXPORT virtual ~AccessTokenStore() {}
|
| + DEVICE_GEOLOCATION_EXPORT AccessTokenStore() {}
|
| + DEVICE_GEOLOCATION_EXPORT virtual ~AccessTokenStore() {}
|
| };
|
|
|
| -} // namespace content
|
| +} // namespace device
|
|
|
| -#endif // CONTENT_PUBLIC_BROWSER_ACCESS_TOKEN_STORE_H_
|
| +#endif // DEVICE_GEOLOCATION_ACCESS_TOKEN_STORE_H_
|
|
|