| Index: chrome/browser/sync/syncable/syncable_id.cc
|
| diff --git a/chrome/browser/sync/syncable/syncable_id.cc b/chrome/browser/sync/syncable/syncable_id.cc
|
| index f3f6b74a8b21027d0d1721513f238dce0beec32c..a4381f96e3df3cb066a4b485cc377bde8f4e760b 100644
|
| --- a/chrome/browser/sync/syncable/syncable_id.cc
|
| +++ b/chrome/browser/sync/syncable/syncable_id.cc
|
| @@ -13,7 +13,6 @@ using std::ostream;
|
| using std::string;
|
|
|
| namespace syncable {
|
| -const Id kNullId; // Currently == root.
|
|
|
| ostream& operator<<(ostream& out, const Id& id) {
|
| out << id.s_;
|
| @@ -71,4 +70,8 @@ Id Id::GetLeastIdForLexicographicComparison() {
|
| return id;
|
| }
|
|
|
| +Id GetNullId() {
|
| + return Id(); // Currently == root.
|
| +}
|
| +
|
| } // namespace syncable
|
|
|