Index: sync/syncable/entry.cc |
diff --git a/sync/syncable/entry.cc b/sync/syncable/entry.cc |
index 2d98c6fdff6d1101bed8422657b02cafe78e2d21..ac6244852c51dbf018deb2185f0f9c15c3ec0e4a 100644 |
--- a/sync/syncable/entry.cc |
+++ b/sync/syncable/entry.cc |
@@ -104,6 +104,10 @@ Id Entry::GetFirstChildId() const { |
return dir()->GetFirstChildId(basetrans_, kernel_); |
} |
+void Entry::GetChildHandles(std::vector<int64>* result) const { |
+ dir()->GetChildHandlesById(basetrans_, Get(ID), result); |
+} |
+ |
bool Entry::ShouldMaintainPosition() const { |
return kernel_->ShouldMaintainPosition(); |
} |