sync_engine.cc 559 B

123456789101112131415161718
  1. // Copyright 2012 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/engine/sync_engine.h"
  5. #include "components/sync/engine/engine_components_factory.h"
  6. namespace syncer {
  7. SyncEngine::InitParams::InitParams() = default;
  8. SyncEngine::InitParams::InitParams(InitParams&& other) = default;
  9. SyncEngine::InitParams::~InitParams() = default;
  10. SyncEngine::SyncEngine() = default;
  11. SyncEngine::~SyncEngine() = default;
  12. } // namespace syncer