chromium/chrome/browser/web_applications/test/web_app_sync_test_utils.cc

// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/web_applications/test/web_app_sync_test_utils.h"

#include "chrome/browser/web_applications/web_app.h"
#include "chrome/browser/web_applications/web_app_sync_bridge.h"
#include "components/sync/model/data_type_sync_bridge.h"
#include "components/sync/model/entity_change.h"
#include "components/sync/model/metadata_change_list.h"

namespace web_app {

namespace sync_bridge_test_utils {

void AddApps(WebAppSyncBridge& sync_bridge,
             const std::vector<std::unique_ptr<WebApp>>& apps_server_state) {}

void UpdateApps(WebAppSyncBridge& sync_bridge,
                const std::vector<std::unique_ptr<WebApp>>& apps_server_state) {}

void DeleteApps(WebAppSyncBridge& sync_bridge,
                const std::vector<webapps::AppId>& app_ids_to_delete) {}

}  // namespace sync_bridge_test_utils

}  // namespace web_app