blob: 8bf57ebe86da0973d3004e9fd0dbf82289c89d30 [file] [log] [blame]
// Copyright 2017 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 "content/common/navigation_subresource_loader_params.h"
namespace content {
SubresourceLoaderParams::SubresourceLoaderParams() = default;
SubresourceLoaderParams::~SubresourceLoaderParams() = default;
SubresourceLoaderParams::SubresourceLoaderParams(
SubresourceLoaderParams&& other) {
loader_factory_info = std::move(other.loader_factory_info);
}
SubresourceLoaderParams& SubresourceLoaderParams::operator=(
SubresourceLoaderParams&& other) {
loader_factory_info = std::move(other.loader_factory_info);
return *this;
}
} // namespace content