| Index: chrome/browser/profile_resetter/profile_resetter_unittest.cc
|
| diff --git a/chrome/browser/profile_resetter/profile_resetter_unittest.cc b/chrome/browser/profile_resetter/profile_resetter_unittest.cc
|
| index c8e31dc28d313a02a4267590a8859bba53ea40b1..cbaf2323673bbf45155aa662f0ebc5dd719e30a6 100644
|
| --- a/chrome/browser/profile_resetter/profile_resetter_unittest.cc
|
| +++ b/chrome/browser/profile_resetter/profile_resetter_unittest.cc
|
| @@ -864,7 +864,7 @@ TEST_F(ProfileResetterTest, CheckSnapshots) {
|
| Manifest::INVALID_LOCATION,
|
| extensions::Manifest::TYPE_EXTENSION,
|
| false);
|
| - ASSERT_TRUE(ext);
|
| + ASSERT_TRUE(ext.get());
|
| service_->AddExtension(ext.get());
|
|
|
| std::string master_prefs(kDistributionConfig);
|
| @@ -953,7 +953,7 @@ TEST_F(ProfileResetterTest, FeedbackSerializationTest) {
|
| Manifest::INVALID_LOCATION,
|
| extensions::Manifest::TYPE_EXTENSION,
|
| false);
|
| - ASSERT_TRUE(ext);
|
| + ASSERT_TRUE(ext.get());
|
| service_->AddExtension(ext.get());
|
|
|
| ShortcutHandler shortcut;
|
| @@ -1032,7 +1032,7 @@ TEST_F(ProfileResetterTest, GetReadableFeedback) {
|
| Manifest::INVALID_LOCATION,
|
| extensions::Manifest::TYPE_EXTENSION,
|
| false);
|
| - ASSERT_TRUE(ext);
|
| + ASSERT_TRUE(ext.get());
|
| service_->AddExtension(ext.get());
|
|
|
| PrefService* prefs = profile()->GetPrefs();
|
|
|