| Index: content/browser/geolocation/location_arbitrator_impl_unittest.cc
|
| diff --git a/content/browser/geolocation/location_arbitrator_impl_unittest.cc b/content/browser/geolocation/location_arbitrator_impl_unittest.cc
|
| index 02b1b38dfa5f83af2c1b7a4371123d2a480e8c6f..830f964b4debd90dddd949cb389cefe52a108b0e 100644
|
| --- a/content/browser/geolocation/location_arbitrator_impl_unittest.cc
|
| +++ b/content/browser/geolocation/location_arbitrator_impl_unittest.cc
|
| @@ -153,7 +153,7 @@ class GeolocationLocationArbitratorTest : public testing::Test {
|
| };
|
|
|
| TEST_F(GeolocationLocationArbitratorTest, CreateDestroy) {
|
| - EXPECT_TRUE(access_token_store_);
|
| + EXPECT_TRUE(access_token_store_.get());
|
| EXPECT_TRUE(arbitrator_ != NULL);
|
| arbitrator_.reset();
|
| SUCCEED();
|
| @@ -170,7 +170,7 @@ TEST_F(GeolocationLocationArbitratorTest, OnPermissionGranted) {
|
| }
|
|
|
| TEST_F(GeolocationLocationArbitratorTest, NormalUsage) {
|
| - ASSERT_TRUE(access_token_store_);
|
| + ASSERT_TRUE(access_token_store_.get());
|
| ASSERT_TRUE(arbitrator_ != NULL);
|
|
|
| EXPECT_FALSE(cell());
|
|
|