// Copyright 2024 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/services/app_service/public/cpp/app.h" namespace apps { App::App(AppType app_type, const std::string& app_id) : … { … } App::~App() = default; bool App::operator==(const App& other) const { … } bool App::operator!=(const App& other) const { … } AppPtr App::Clone() const { … } bool IsEqual(const std::vector<AppPtr>& source, const std::vector<AppPtr>& target) { … } } // namespace apps