| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "components/sync/syncable/syncable_write_transaction.h" | 5 #include "components/sync/syncable/syncable_write_transaction.h" |
| 6 | 6 |
| 7 #include <stdint.h> | |
| 8 | |
| 9 #include <string> | 7 #include <string> |
| 10 | 8 |
| 11 #include "components/sync/syncable/directory.h" | 9 #include "components/sync/syncable/directory.h" |
| 12 #include "components/sync/syncable/directory_change_delegate.h" | 10 #include "components/sync/syncable/directory_change_delegate.h" |
| 13 #include "components/sync/syncable/mutable_entry.h" | 11 #include "components/sync/syncable/mutable_entry.h" |
| 14 #include "components/sync/syncable/transaction_observer.h" | 12 #include "components/sync/syncable/transaction_observer.h" |
| 15 #include "components/sync/syncable/write_transaction_info.h" | 13 #include "components/sync/syncable/write_transaction_info.h" |
| 16 | 14 |
| 17 namespace syncer { | 15 namespace syncer { |
| 18 namespace syncable { | 16 namespace syncable { |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 ENUM_CASE(SYNCAPI); | 185 ENUM_CASE(SYNCAPI); |
| 188 } | 186 } |
| 189 NOTREACHED(); | 187 NOTREACHED(); |
| 190 return std::string(); | 188 return std::string(); |
| 191 } | 189 } |
| 192 | 190 |
| 193 #undef ENUM_CASE | 191 #undef ENUM_CASE |
| 194 | 192 |
| 195 } // namespace syncable | 193 } // namespace syncable |
| 196 } // namespace syncer | 194 } // namespace syncer |
| OLD | NEW |