blob: e15d4f6ef52be6a85c3c64e6bec2287de48dc4f4 [file] [log] [blame]
// Copyright 2014 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/image_fetcher/core/image_fetcher.h"
namespace image_fetcher {
ImageFetcherParams::ImageFetcherParams(
const net::NetworkTrafficAnnotationTag network_traffic_annotation_tag,
std::string uma_client_name)
: network_traffic_annotation_tag_(network_traffic_annotation_tag),
uma_client_name_(uma_client_name) {}
ImageFetcherParams::ImageFetcherParams(const ImageFetcherParams& params) =
default;
ImageFetcherParams::ImageFetcherParams(ImageFetcherParams&& params) = default;
ImageFetcherParams::~ImageFetcherParams() = default;
} // namespace image_fetcher