// 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. #include "components/sync/model/sync_change.h" #include <ostream> #include "base/check.h" #include "base/notreached.h" namespace syncer { // static std::string SyncChange::ChangeTypeToString(SyncChangeType change_type) { … } SyncChange::SyncChange(const base::Location& from_here, SyncChangeType change_type, const SyncData& sync_data) : … { … } SyncChange::~SyncChange() = default; std::string SyncChange::ToString() const { … } void PrintTo(const SyncChange& sync_change, std::ostream* os) { … } } // namespace syncer