Commit 5d4bc823 authored by tzik@chromium.org's avatar tzik@chromium.org

Add FileResource shared_with_me_date setter

NOTRY=true

Review URL: https://chromiumcodereview.appspot.com/24035002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@221693 0039d316-1c4b-4281-b951-d872f2087c98
parent e8364f25
...@@ -582,6 +582,9 @@ class FileResource { ...@@ -582,6 +582,9 @@ class FileResource {
void set_last_viewed_by_me_date(const base::Time& last_viewed_by_me_date) { void set_last_viewed_by_me_date(const base::Time& last_viewed_by_me_date) {
last_viewed_by_me_date_ = last_viewed_by_me_date; last_viewed_by_me_date_ = last_viewed_by_me_date;
} }
void set_shared_with_me_date(const base::Time& shared_with_me_date) {
shared_with_me_date_ = shared_with_me_date;
}
void set_download_url(const GURL& download_url) { void set_download_url(const GURL& download_url) {
download_url_ = download_url; download_url_ = download_url;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment