nigori_local_change_processor.cc 595 B

12345678910111213141516171819
  1. // Copyright 2019 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "components/sync/nigori/nigori_local_change_processor.h"
  5. #include <memory>
  6. namespace syncer {
  7. NigoriMetadataBatch::NigoriMetadataBatch() = default;
  8. NigoriMetadataBatch::NigoriMetadataBatch(NigoriMetadataBatch&& other)
  9. : model_type_state(std::move(other.model_type_state)),
  10. entity_metadata(std::move(other.entity_metadata)) {}
  11. NigoriMetadataBatch::~NigoriMetadataBatch() = default;
  12. } // namespace syncer