diff options
Diffstat (limited to 'chrome/browser/geolocation/access_token_store_browsertest.cc')
-rw-r--r-- | chrome/browser/geolocation/access_token_store_browsertest.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/browser/geolocation/access_token_store_browsertest.cc b/chrome/browser/geolocation/access_token_store_browsertest.cc index 802d16d..4893194 100644 --- a/chrome/browser/geolocation/access_token_store_browsertest.cc +++ b/chrome/browser/geolocation/access_token_store_browsertest.cc @@ -11,13 +11,13 @@ #include "chrome/test/ui_test_utils.h" namespace { + // The token store factory implementation expects to be used from any well-known // chrome thread other than UI. We could use any arbitrary thread; IO is // a good choice as this is the expected usage. const BrowserThread::ID kExpectedClientThreadId = BrowserThread::IO; const char* kRefServerUrl1 = "https://test.domain.example/foo?id=bar.bar"; const char* kRefServerUrl2 = "http://another.domain.example/foo?id=bar.bar#2"; -} // namespace class GeolocationAccessTokenStoreTest : public InProcessBrowserTest { @@ -149,3 +149,5 @@ IN_PROC_BROWSER_TEST_F(GeolocationAccessTokenStoreTest, CancelRequest) { RunCancelTestInClientTread)); ui_test_utils::RunMessageLoop(); } + +} // namespace |