// Copyright 2017 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/model_error.h" namespace syncer { ModelError::ModelError(const base::Location& location, const std::string& message) : … { … } ModelError::~ModelError() = default; const base::Location& ModelError::location() const { … } const std::string& ModelError::message() const { … } std::string ModelError::ToString() const { … } } // namespace syncer