// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_SYNC_MODEL_SYNC_CHANGE_PROCESSOR_H_ #define COMPONENTS_SYNC_MODEL_SYNC_CHANGE_PROCESSOR_H_ #include "components/sync/base/data_type.h" #include "components/sync/model/model_error.h" #include "components/sync/model/sync_change.h" #include "components/sync/model/sync_data.h" #include "components/sync/model/sync_error.h" namespace base { class Location; } // namespace base namespace syncer { // An interface for services that handle receiving SyncChanges. class SyncChangeProcessor { … }; } // namespace syncer #endif // COMPONENTS_SYNC_MODEL_SYNC_CHANGE_PROCESSOR_H_