blob: 2fa58ed1b7d21e7ff9d963a9aba9da0de4a986b0 [file] [log] [blame]
// Copyright 2022 The Chromium Authors. All rights reserved.
// 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/locks/app_lock.h"
#include "chrome/browser/web_applications/locks/lock.h"
namespace web_app {
AppLock::AppLock(base::flat_set<AppId> app_ids)
: Lock(std::move(app_ids), Lock::Type::kApp) {}
AppLock::~AppLock() = default;
} // namespace web_app