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
3 // found in the LICENSE file.
5 #include "sync/test/null_directory_change_delegate.h"
10 NullDirectoryChangeDelegate::~NullDirectoryChangeDelegate() {}
12 void NullDirectoryChangeDelegate::HandleCalculateChangesChangeEventFromSyncApi(
13 const ImmutableWriteTransactionInfo
& write_transaction_info
,
14 BaseTransaction
* trans
) {}
16 void NullDirectoryChangeDelegate::HandleCalculateChangesChangeEventFromSyncer(
17 const ImmutableWriteTransactionInfo
& write_transaction_info
,
18 BaseTransaction
* trans
) {}
21 NullDirectoryChangeDelegate::HandleTransactionEndingChangeEvent(
22 const ImmutableWriteTransactionInfo
& write_transaction_info
,
23 BaseTransaction
* trans
) {
24 return ModelTypeSet();
27 void NullDirectoryChangeDelegate::HandleTransactionCompleteChangeEvent(
28 ModelTypeSet models_with_changes
) {}
30 } // namespace syncable