chromium/components/sync/model/entity_change.cc

// Copyright 2015 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/entity_change.h"

#include <utility>

#include "base/memory/ptr_util.h"

namespace syncer {

// static
std::unique_ptr<EntityChange> EntityChange::CreateAdd(
    const std::string& storage_key,
    EntityData data) {}

// static
std::unique_ptr<EntityChange> EntityChange::CreateUpdate(
    const std::string& storage_key,
    EntityData data) {}

// static
std::unique_ptr<EntityChange> EntityChange::CreateDelete(
    const std::string& storage_key) {}

// static
std::unique_ptr<EntityChange>
EntityChange::CreateDeletedCollaborationMembership(
    const std::string& storage_key) {}

EntityChange::EntityChange(const std::string& storage_key,
                           ChangeType type,
                           EntityData data)
    :{}

EntityChange::~EntityChange() = default;

}  // namespace syncer