blob: f3c561f16aaa9909a7a9d28e44459ea765242cc5 [file] [log] [blame]
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_PUBLIC_BROWSER_DOWNLOAD_UTILS_H_
#define CONTENT_PUBLIC_BROWSER_DOWNLOAD_UTILS_H_
#include "content/common/content_export.h"
#include <string>
class GURL;
namespace net {
class HttpResponseHeaders;
}
namespace content {
namespace download_utils {
// Returns true if the given response must be downloaded because of the headers.
CONTENT_EXPORT bool MustDownload(const GURL& url,
const net::HttpResponseHeaders* headers,
const std::string& mime_type);
} // namespace download_utils
} // namespace content
#endif // CONTENT_PUBLIC_BROWSER_DOWNLOAD_UTILS_H_