diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-11 02:00:41 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-11 02:00:41 +0000 |
commit | edb63cca7fdc57ac8e84dcec991537778e35dafe (patch) | |
tree | df7f8fead698219ca3c318bcab39240207e41bf6 /chrome/browser/extensions | |
parent | fc9a102b92d078429a1ab3c7684452baa958d2bb (diff) | |
download | chromium_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/extensions')
-rw-r--r-- | chrome/browser/extensions/extension_bookmark_helpers.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/extensions/extension_bookmark_helpers.cc b/chrome/browser/extensions/extension_bookmark_helpers.cc index 047cb99..eebdf4c 100644 --- a/chrome/browser/extensions/extension_bookmark_helpers.cc +++ b/chrome/browser/extensions/extension_bookmark_helpers.cc @@ -31,7 +31,7 @@ DictionaryValue* GetNodeDictionary(const BookmarkNode* node, } else { // Javascript Date wants milliseconds since the epoch, ToDoubleT is // seconds. - base::Time t = node->date_group_modified(); + base::Time t = node->date_folder_modified(); if (!t.is_null()) dict->SetDouble(keys::kDateGroupModifiedKey, floor(t.ToDoubleT() * 1000)); } |