diff options
Diffstat (limited to 'content/browser/download/drag_download_util.h')
-rw-r--r-- | content/browser/download/drag_download_util.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/content/browser/download/drag_download_util.h b/content/browser/download/drag_download_util.h index 95a5521..7cb7ada 100644 --- a/content/browser/download/drag_download_util.h +++ b/content/browser/download/drag_download_util.h @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// 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. @@ -38,7 +38,9 @@ CONTENT_EXPORT bool ParseDownloadMetadata(const string16& metadata, // Create a new file at the specified path. If the file already exists, try to // insert the sequential unifier to produce a new file, like foo-01.txt. // Return a FileStream if successful. -CONTENT_EXPORT net::FileStream* CreateFileStreamForDrop(FilePath* file_path); +// |net_log| is a NetLog for the stream. +CONTENT_EXPORT net::FileStream* CreateFileStreamForDrop( + FilePath* file_path, net::NetLog* net_log); // Implementation of DownloadFileObserver to finalize the download process. class CONTENT_EXPORT PromiseFileFinalizer : public ui::DownloadFileObserver { |