blob: af5e7ee4af095d3f32bfab5c1cfa448e9046c2b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// Copyright 2018 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.
#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_
|