| Index: chrome/browser/prefs/pref_service_uitest.cc
|
| diff --git a/chrome/browser/prefs/pref_service_uitest.cc b/chrome/browser/prefs/pref_service_uitest.cc
|
| index ee9c2a46e51fe650ada83b8a82e2e211dccdc1db..4cc0d0ea4a51cf1195c50b449078a0b77860bc76 100644
|
| --- a/chrome/browser/prefs/pref_service_uitest.cc
|
| +++ b/chrome/browser/prefs/pref_service_uitest.cc
|
| @@ -98,7 +98,7 @@ TEST_F(PreferenceServiceTest, PreservedWindowPlacementIsLoaded) {
|
| scoped_ptr<Value> root(deserializer.Deserialize(NULL, NULL));
|
|
|
| ASSERT_TRUE(root.get());
|
| - ASSERT_TRUE(root->IsType(Value::TYPE_DICTIONARY));
|
| + ASSERT_TRUE(root->IsDictionary());
|
|
|
| DictionaryValue* root_dict = static_cast<DictionaryValue*>(root.get());
|
|
|
| @@ -156,7 +156,7 @@ TEST_F(PreferenceServiceTest, PreservedWindowPlacementIsMigrated) {
|
| scoped_ptr<Value> root(deserializer.Deserialize(NULL, NULL));
|
|
|
| ASSERT_TRUE(root.get());
|
| - ASSERT_TRUE(root->IsType(Value::TYPE_DICTIONARY));
|
| + ASSERT_TRUE(root->IsDictionary());
|
|
|
| // Retrieve the screen rect for the launched window
|
| scoped_refptr<BrowserProxy> browser(automation()->GetBrowserWindow(0));
|
|
|