diff options
Diffstat (limited to 'chrome/browser/sync/engine/syncapi.cc')
-rw-r--r-- | chrome/browser/sync/engine/syncapi.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/chrome/browser/sync/engine/syncapi.cc b/chrome/browser/sync/engine/syncapi.cc index 112878d..206125b 100644 --- a/chrome/browser/sync/engine/syncapi.cc +++ b/chrome/browser/sync/engine/syncapi.cc @@ -14,7 +14,6 @@ #include "base/lock.h" #include "base/logging.h" #include "base/message_loop.h" -#include "base/platform_thread.h" #include "base/scoped_ptr.h" #include "base/sha1.h" #include "base/string_util.h" @@ -217,6 +216,10 @@ int64 BaseNode::GetId() const { return GetEntry()->Get(syncable::META_HANDLE); } +int64 BaseNode::GetModificationTime() const { + return GetEntry()->Get(syncable::MTIME); +} + bool BaseNode::GetIsFolder() const { return GetEntry()->Get(syncable::IS_DIR); } |