Index: chrome/browser/sync/engine/process_commit_response_command.cc |
=================================================================== |
--- chrome/browser/sync/engine/process_commit_response_command.cc (revision 102184) |
+++ chrome/browser/sync/engine/process_commit_response_command.cc (working copy) |
@@ -16,7 +16,6 @@ |
#include "chrome/browser/sync/sessions/sync_session.h" |
#include "chrome/browser/sync/syncable/directory_manager.h" |
#include "chrome/browser/sync/syncable/syncable.h" |
-#include "chrome/browser/sync/util/time.h" |
using syncable::ScopedDirLookup; |
using syncable::WriteTransaction; |
@@ -381,9 +380,9 @@ |
local_entry->Put(syncable::SERVER_SPECIFICS, |
committed_entry.specifics()); |
local_entry->Put(syncable::SERVER_MTIME, |
- ProtoTimeToTime(committed_entry.mtime())); |
+ committed_entry.mtime()); |
local_entry->Put(syncable::SERVER_CTIME, |
- ProtoTimeToTime(committed_entry.ctime())); |
+ committed_entry.ctime()); |
local_entry->Put(syncable::SERVER_POSITION_IN_PARENT, |
entry_response.position_in_parent()); |
// TODO(nick): The server doesn't set entry_response.server_parent_id in |