chromium/components/sync/engine/events/commit_response_event.cc

// 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.

#include "components/sync/engine/events/commit_response_event.h"

#include "base/values.h"
#include "components/sync/protocol/proto_value_conversions.h"

namespace syncer {

CommitResponseEvent::CommitResponseEvent(
    base::Time timestamp,
    SyncerError result,
    const sync_pb::ClientToServerResponse& response)
    :{}

CommitResponseEvent::~CommitResponseEvent() = default;

std::unique_ptr<ProtocolEvent> CommitResponseEvent::Clone() const {}

base::Time CommitResponseEvent::GetTimestamp() const {}

std::string CommitResponseEvent::GetType() const {}

std::string CommitResponseEvent::GetDetails() const {}

base::Value::Dict CommitResponseEvent::GetProtoMessage(
    bool include_specifics) const {}

}  // namespace syncer