diff options
Diffstat (limited to 'content/browser/download/base_file.cc')
-rw-r--r-- | content/browser/download/base_file.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/content/browser/download/base_file.cc b/content/browser/download/base_file.cc index 466be32..90ab485 100644 --- a/content/browser/download/base_file.cc +++ b/content/browser/download/base_file.cc @@ -211,6 +211,10 @@ void BaseFile::Finish() { Close(); } +void BaseFile::SetClientGuid(const std::string& guid) { + client_guid_ = guid; +} + // OS_WIN, OS_MACOSX and OS_LINUX have specialized implementations. #if !defined(OS_WIN) && !defined(OS_MACOSX) && !defined(OS_LINUX) DownloadInterruptReason BaseFile::AnnotateWithSourceInformation() { |