// Copyright 2014 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_ENGINE_COMMIT_PROCESSOR_H_ #define COMPONENTS_SYNC_ENGINE_COMMIT_PROCESSOR_H_ #include <stddef.h> #include "base/memory/raw_ptr.h" #include "components/sync/base/data_type.h" #include "components/sync/engine/commit.h" #include "components/sync/engine/data_type_registry.h" namespace syncer { class CommitContributor; // This class manages the set of per-type committer objects. // // It owns these types and hides the details of iterating over all of them. // It is a logic error if the supplied set of types contains a type which was // not previously registered. class CommitProcessor { … }; } // namespace syncer #endif // COMPONENTS_SYNC_ENGINE_COMMIT_PROCESSOR_H_