| 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 "sync/syncable/syncable_write_transaction.h" | 5 #include "sync/syncable/syncable_write_transaction.h" |
| 6 | 6 |
| 7 #include "sync/syncable/directory.h" | 7 #include "sync/syncable/directory.h" |
| 8 #include "sync/syncable/directory_change_delegate.h" | 8 #include "sync/syncable/directory_change_delegate.h" |
| 9 #include "sync/syncable/mutable_entry.h" | 9 #include "sync/syncable/mutable_entry.h" |
| 10 #include "sync/syncable/transaction_observer.h" | 10 #include "sync/syncable/transaction_observer.h" |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 ENUM_CASE(INVALID); | 168 ENUM_CASE(INVALID); |
| 169 ENUM_CASE(SYNCER); | 169 ENUM_CASE(SYNCER); |
| 170 ENUM_CASE(AUTHWATCHER); | 170 ENUM_CASE(AUTHWATCHER); |
| 171 ENUM_CASE(UNITTEST); | 171 ENUM_CASE(UNITTEST); |
| 172 ENUM_CASE(VACUUM_AFTER_SAVE); | 172 ENUM_CASE(VACUUM_AFTER_SAVE); |
| 173 ENUM_CASE(HANDLE_SAVE_FAILURE); | 173 ENUM_CASE(HANDLE_SAVE_FAILURE); |
| 174 ENUM_CASE(PURGE_ENTRIES); | 174 ENUM_CASE(PURGE_ENTRIES); |
| 175 ENUM_CASE(SYNCAPI); | 175 ENUM_CASE(SYNCAPI); |
| 176 }; | 176 }; |
| 177 NOTREACHED(); | 177 NOTREACHED(); |
| 178 return ""; | 178 return std::string(); |
| 179 } | 179 } |
| 180 | 180 |
| 181 #undef ENUM_CASE | 181 #undef ENUM_CASE |
| 182 | 182 |
| 183 } // namespace syncable | 183 } // namespace syncable |
| 184 } // namespace syncer | 184 } // namespace syncer |
| OLD | NEW |