diff options
Diffstat (limited to 'chrome/browser/geolocation')
3 files changed, 5 insertions, 2 deletions
diff --git a/chrome/browser/geolocation/access_token_store_browsertest.cc b/chrome/browser/geolocation/access_token_store_browsertest.cc index b9ede22..2fd5fa9 100644 --- a/chrome/browser/geolocation/access_token_store_browsertest.cc +++ b/chrome/browser/geolocation/access_token_store_browsertest.cc @@ -10,7 +10,9 @@ #include "chrome/test/base/in_process_browser_test.h" #include "chrome/test/base/ui_test_utils.h" #include "content/test/test_browser_thread.h" +#include "content/public/browser/access_token_store.h" +using content::AccessTokenStore; using content::BrowserThread; namespace { diff --git a/chrome/browser/geolocation/chrome_access_token_store.cc b/chrome/browser/geolocation/chrome_access_token_store.cc index fb0c281..7a23269 100644 --- a/chrome/browser/geolocation/chrome_access_token_store.cc +++ b/chrome/browser/geolocation/chrome_access_token_store.cc @@ -15,6 +15,7 @@ #include "content/public/browser/browser_thread.h" #include "googleurl/src/gurl.h" +using content::AccessTokenStore; using content::BrowserThread; namespace { diff --git a/chrome/browser/geolocation/chrome_access_token_store.h b/chrome/browser/geolocation/chrome_access_token_store.h index 49c143e..dacd0ec 100644 --- a/chrome/browser/geolocation/chrome_access_token_store.h +++ b/chrome/browser/geolocation/chrome_access_token_store.h @@ -7,12 +7,12 @@ #pragma once #include "base/memory/ref_counted.h" -#include "content/browser/geolocation/access_token_store.h" +#include "content/public/browser/access_token_store.h" class PrefService; // Creates a new access token store backed by the global chome prefs. -class ChromeAccessTokenStore : public AccessTokenStore { +class ChromeAccessTokenStore : public content::AccessTokenStore { public: static void RegisterPrefs(PrefService* prefs); |