| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 <stdint.h> | |
| 6 | |
| 7 #include "components/sync/test/null_directory_change_delegate.h" | 5 #include "components/sync/test/null_directory_change_delegate.h" |
| 8 | 6 |
| 9 namespace syncer { | 7 namespace syncer { |
| 10 namespace syncable { | 8 namespace syncable { |
| 11 | 9 |
| 12 NullDirectoryChangeDelegate::~NullDirectoryChangeDelegate() {} | 10 NullDirectoryChangeDelegate::~NullDirectoryChangeDelegate() {} |
| 13 | 11 |
| 14 void NullDirectoryChangeDelegate::HandleCalculateChangesChangeEventFromSyncApi( | 12 void NullDirectoryChangeDelegate::HandleCalculateChangesChangeEventFromSyncApi( |
| 15 const ImmutableWriteTransactionInfo& write_transaction_info, | 13 const ImmutableWriteTransactionInfo& write_transaction_info, |
| 16 BaseTransaction* trans, | 14 BaseTransaction* trans, |
| (...skipping 20 matching lines...) Expand all Loading... |
| 37 const ImmutableWriteTransactionInfo& write_transaction_info, | 35 const ImmutableWriteTransactionInfo& write_transaction_info, |
| 38 BaseTransaction* trans) { | 36 BaseTransaction* trans) { |
| 39 return ModelTypeSet(); | 37 return ModelTypeSet(); |
| 40 } | 38 } |
| 41 | 39 |
| 42 void NullDirectoryChangeDelegate::HandleTransactionCompleteChangeEvent( | 40 void NullDirectoryChangeDelegate::HandleTransactionCompleteChangeEvent( |
| 43 ModelTypeSet models_with_changes) {} | 41 ModelTypeSet models_with_changes) {} |
| 44 | 42 |
| 45 } // namespace syncable | 43 } // namespace syncable |
| 46 } // namespace syncer | 44 } // namespace syncer |
| OLD | NEW |