Replace lastVisited method in DocInfo with timestamp attribute

This is not only more consistent with the name, uri and
mimeType attributes, but makes adding Zeitgeist support easier.
This commit is contained in:
Siegfried-Angel Gevatter Pujals
2009-07-25 17:00:37 +02:00
parent 04538c65b5
commit f3efbf432f
3 changed files with 7 additions and 12 deletions

View File

@ -18,6 +18,10 @@ function DocInfo(recentInfo) {
DocInfo.prototype = {
_init : function(recentInfo) {
this._recentInfo = recentInfo;
// We actually used get_modified() instead of get_visited()
// here, as GtkRecentInfo doesn't updated get_visited()
// correctly. See http://bugzilla.gnome.org/show_bug.cgi?id=567094
this.timestamp = recentInfo.get_modified().getTime() / 1000;
this.name = recentInfo.get_display_name();
this.uri = recentInfo.get_uri();
this.mimeType = recentInfo.get_mime_type();
@ -76,15 +80,6 @@ DocInfo.prototype = {
exists : function() {
return this._recentInfo.exists();
},
lastVisited : function() {
// We actually used get_modified() instead of get_visited()
// here, as GtkRecentInfo doesn't updated get_visited()
// correctly. See
// http://bugzilla.gnome.org/show_bug.cgi?id=567094
return this._recentInfo.get_modified();
}
};