diff options
Diffstat (limited to 'chrome/browser/bookmarks')
-rw-r--r-- | chrome/browser/bookmarks/bookmark_drag_data_unittest.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/bookmarks/bookmark_drag_data_unittest.cc b/chrome/browser/bookmarks/bookmark_drag_data_unittest.cc index d9bf74d..8da227e 100644 --- a/chrome/browser/bookmarks/bookmark_drag_data_unittest.cc +++ b/chrome/browser/bookmarks/bookmark_drag_data_unittest.cc @@ -100,7 +100,7 @@ TEST_F(BookmarkDragDataTest, URL) { EXPECT_TRUE(read_data.GetFirstNode(&profile) == node); // Make sure asking for the node with a different profile returns NULL. - TestingProfile profile2(1); + TestingProfile profile2; EXPECT_TRUE(read_data.GetFirstNode(&profile2) == NULL); // Writing should also put the URL and title on the clipboard. @@ -146,7 +146,7 @@ TEST_F(BookmarkDragDataTest, Group) { EXPECT_TRUE(g12 == r_g12); // A different profile should return NULL for the node. - TestingProfile profile2(1); + TestingProfile profile2; EXPECT_TRUE(read_data.GetFirstNode(&profile2) == NULL); } |