summaryrefslogtreecommitdiff
path: root/content/browser/download/base_file_mac.cc
blob: 21e6b556abb175d3d2864af97f8b3373ec82d257 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (c) 2012 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/browser/download/base_file.h"

#include "content/browser/download/file_metadata_mac.h"
#include "content/public/browser/browser_thread.h"

namespace content {

DownloadInterruptReason BaseFile::AnnotateWithSourceInformation() {
  DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
  DCHECK(!detached_);

  AddQuarantineMetadataToFile(full_path_, source_url_, referrer_url_);
  AddOriginMetadataToFile(full_path_, source_url_, referrer_url_);
  return DOWNLOAD_INTERRUPT_REASON_NONE;
}

}  // namespace content