// 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 |