blob: 1118fd5c39466da53147484d524228aedac55be0 [file] [log] [blame]
// Copyright 2021 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/web_app_launch_params.h"
namespace web_app {
WebAppLaunchParams::WebAppLaunchParams() = default;
WebAppLaunchParams::WebAppLaunchParams(const WebAppLaunchParams&) = default;
WebAppLaunchParams::WebAppLaunchParams(WebAppLaunchParams&&) = default;
WebAppLaunchParams::~WebAppLaunchParams() = default;
WebAppLaunchParams& WebAppLaunchParams::operator=(const WebAppLaunchParams&) =
default;
WebAppLaunchParams& WebAppLaunchParams::operator=(WebAppLaunchParams&&) =
default;
} // namespace web_app