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
   29
   30
   31
   32
   33

content / public / browser / download_utils.h [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>

namespace content {
class BrowserContext;
}  // namespace content

class GURL;
namespace net {
class HttpResponseHeaders;
}  // namespace net

namespace content {
namespace download_utils {

// Returns true if the given response must be downloaded because of the headers.
CONTENT_EXPORT bool MustDownload(BrowserContext* browser_context,
                                 const GURL& url,
                                 const net::HttpResponseHeaders* headers,
                                 const std::string& mime_type);

}  // namespace download_utils
}  // namespace content

#endif  // CONTENT_PUBLIC_BROWSER_DOWNLOAD_UTILS_H_