summaryrefslogtreecommitdiffstats
path: root/chrome/browser/bookmarks/bookmark_model_test_utils.cc
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-11 02:00:41 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-11 02:00:41 +0000
commitedb63cca7fdc57ac8e84dcec991537778e35dafe (patch)
treedf7f8fead698219ca3c318bcab39240207e41bf6 /chrome/browser/bookmarks/bookmark_model_test_utils.cc
parentfc9a102b92d078429a1ab3c7684452baa958d2bb (diff)
downloadchromium_src-edb63cca7fdc57ac8e84dcec991537778e35dafe.zip
chromium_src-edb63cca7fdc57ac8e84dcec991537778e35dafe.tar.gz
chromium_src-edb63cca7fdc57ac8e84dcec991537778e35dafe.tar.bz2
bookmarks: Rename entries with group_modified to folder_modified.
This is the first part to get rid of references to group in the bookmarks API. All of them will be changed from group to folder to make it consistent, since right now we have a mix of them. BUG=None TEST=None Review URL: http://codereview.chromium.org/6667013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@77760 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/bookmarks/bookmark_model_test_utils.cc')
-rw-r--r--chrome/browser/bookmarks/bookmark_model_test_utils.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/bookmarks/bookmark_model_test_utils.cc b/chrome/browser/bookmarks/bookmark_model_test_utils.cc
index a8503d7..7286a9e 100644
--- a/chrome/browser/bookmarks/bookmark_model_test_utils.cc
+++ b/chrome/browser/bookmarks/bookmark_model_test_utils.cc
@@ -21,8 +21,8 @@ void BookmarkModelTestUtils::AssertNodesEqual(const BookmarkNode* expected,
if (expected->type() == BookmarkNode::URL) {
EXPECT_EQ(expected->GetURL(), actual->GetURL());
} else {
- EXPECT_TRUE(expected->date_group_modified() ==
- actual->date_group_modified());
+ EXPECT_TRUE(expected->date_folder_modified() ==
+ actual->date_folder_modified());
ASSERT_EQ(expected->child_count(), actual->child_count());
for (int i = 0; i < expected->child_count(); ++i)
AssertNodesEqual(expected->GetChild(i), actual->GetChild(i), check_ids);