Index: chrome/browser/bookmarks/bookmark_model_test_utils.cc |
diff --git a/chrome/browser/bookmarks/bookmark_model_test_utils.cc b/chrome/browser/bookmarks/bookmark_model_test_utils.cc |
index e563a3f2ffe06b37e9e2fcba0291f1dd7e5ea123..263e42fd267eeb865ca0731bd9976de3b0ded3ba 100644 |
--- a/chrome/browser/bookmarks/bookmark_model_test_utils.cc |
+++ b/chrome/browser/bookmarks/bookmark_model_test_utils.cc |
@@ -1,4 +1,4 @@ |
-// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. |
+// Copyright (c) 2010 The Chromium Authors. All rights reserved. |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
@@ -15,7 +15,7 @@ void BookmarkModelTestUtils::AssertNodesEqual(const BookmarkNode* expected, |
ASSERT_TRUE(actual); |
if (check_ids) |
EXPECT_EQ(expected->id(), actual->id()); |
- EXPECT_EQ(expected->GetTitle(), actual->GetTitle()); |
+ EXPECT_EQ(expected->GetTitleAsString16(), actual->GetTitleAsString16()); |
EXPECT_EQ(expected->type(), actual->type()); |
EXPECT_TRUE(expected->date_added() == actual->date_added()); |
if (expected->type() == BookmarkNode::URL) { |