| Index: content/browser/geolocation/fake_access_token_store.h
|
| diff --git a/content/browser/geolocation/fake_access_token_store.h b/content/browser/geolocation/fake_access_token_store.h
|
| index 4426e59fa42d9c7e3a3f4ebabfced328ff8e9412..a5e070036db405e04b4fafcf902d0bf070e1d6c2 100644
|
| --- a/content/browser/geolocation/fake_access_token_store.h
|
| +++ b/content/browser/geolocation/fake_access_token_store.h
|
| @@ -7,10 +7,12 @@
|
| #pragma once
|
|
|
| #include "base/message_loop_proxy.h"
|
| -#include "content/browser/geolocation/access_token_store.h"
|
| +#include "content/public/browser/access_token_store.h"
|
| #include "testing/gmock/include/gmock/gmock.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| +namespace content {
|
| +
|
| // A fake (non-persisted) access token store instance useful for testing.
|
| class FakeAccessTokenStore : public AccessTokenStore {
|
| public:
|
| @@ -43,4 +45,6 @@ class FakeAccessTokenStore : public AccessTokenStore {
|
| DISALLOW_COPY_AND_ASSIGN(FakeAccessTokenStore);
|
| };
|
|
|
| +} // namespace content
|
| +
|
| #endif // CONTENT_BROWSER_GEOLOCATION_FAKE_ACCESS_TOKEN_STORE_H_
|
|
|