diff options
author | hashimoto@chromium.org <hashimoto@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-07 14:46:33 +0000 |
---|---|---|
committer | hashimoto@chromium.org <hashimoto@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-07 14:46:33 +0000 |
commit | d061c6bcfa1e59a8a7df6f03afa14a34d5b83f9c (patch) | |
tree | 0ea45843e0cd051a0ec4de66be2e033b729c95e3 /chrome/browser/chromeos/drive/sync_client.cc | |
parent | 4a35865d0eefbb69dfa61649110952c6c754aa58 (diff) | |
download | chromium_src-d061c6bcfa1e59a8a7df6f03afa14a34d5b83f9c.zip chromium_src-d061c6bcfa1e59a8a7df6f03afa14a34d5b83f9c.tar.gz chromium_src-d061c6bcfa1e59a8a7df6f03afa14a34d5b83f9c.tar.bz2 |
drive: Rename FileSpecificInfo::file_md5 to md5
BUG=247598
TEST=build
Review URL: https://chromiumcodereview.appspot.com/15978003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@204834 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chromeos/drive/sync_client.cc')
-rw-r--r-- | chrome/browser/chromeos/drive/sync_client.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/chromeos/drive/sync_client.cc b/chrome/browser/chromeos/drive/sync_client.cc index 2ff3a04..38cefad 100644 --- a/chrome/browser/chromeos/drive/sync_client.cc +++ b/chrome/browser/chromeos/drive/sync_client.cc @@ -260,7 +260,7 @@ void SyncClient::OnGetResourceEntryById( // If MD5s don't match, it indicates the local cache file is stale, unless // the file is dirty (the MD5 is "local"). We should never re-fetch the // file when we have a locally modified version. - if (entry->file_specific_info().file_md5() != cache_entry.md5() && + if (entry->file_specific_info().md5() != cache_entry.md5() && !cache_entry.is_dirty()) { cache_->RemoveOnUIThread(resource_id, base::Bind(&SyncClient::OnRemove, |