blob: 4ae6a9e3217d9cc16003d674d10e8dd356979240 [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/autofill_assistant/browser/website_login_fetcher.h"
namespace autofill_assistant {
WebsiteLoginFetcher::Login::Login(const GURL& _origin,
const std::string& _username)
: origin(_origin), username(_username) {}
WebsiteLoginFetcher::Login::Login(const Login& other) = default;
WebsiteLoginFetcher::Login::~Login() = default;
} // namespace autofill_assistant