blob: 9296cd60e8d5138997e1204cd8de2ecd9e3c3b92 [file] [log] [blame]
// Copyright 2019 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 "components/signin/core/browser/multilogin_parameters.h"
namespace signin {
MultiloginParameters::MultiloginParameters(
const gaia::MultiloginMode mode,
const std::vector<std::string>& accounts_to_send)
: mode(mode), accounts_to_send(accounts_to_send) {}
MultiloginParameters::~MultiloginParameters() {}
MultiloginParameters::MultiloginParameters(const MultiloginParameters& other) {
mode = other.mode;
accounts_to_send = other.accounts_to_send;
}
MultiloginParameters& MultiloginParameters::operator=(
const MultiloginParameters& other) {
mode = other.mode;
accounts_to_send = other.accounts_to_send;
return *this;
}
} // namespace signin