chromium/components/sync/engine/syncer_error.h

// 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_ENGINE_SYNCER_ERROR_H_
#define COMPONENTS_SYNC_ENGINE_SYNCER_ERROR_H_

#include <string>

#include "components/sync/engine/sync_protocol_error.h"
#include "net/http/http_status_code.h"
#include "third_party/abseil-cpp/absl/types/variant.h"

namespace syncer {

// This class describes all the possible results of a sync cycle. It should be
// passed by value.
class SyncerError {};

}  // namespace syncer

#endif  // COMPONENTS_SYNC_ENGINE_SYNCER_ERROR_H_