| Index: content/browser/download/base_file.h
|
| diff --git a/content/browser/download/base_file.h b/content/browser/download/base_file.h
|
| index 7ada03c7c4c9a0e7ec016c775aeb48531f713bbf..885c79df738aa624318c59ecf14be289f245d2f3 100644
|
| --- a/content/browser/download/base_file.h
|
| +++ b/content/browser/download/base_file.h
|
| @@ -40,7 +40,11 @@ class CONTENT_EXPORT BaseFile {
|
| virtual ~BaseFile();
|
|
|
| // Returns net::OK on success, or a network error code on failure.
|
| - net::Error Initialize();
|
| + // |default_directory| specifies the directory to create the temporary file in
|
| + // if |full_path()| is empty. If |default_directory| and |full_path()| are
|
| + // empty, then a temporary file will be created in the default download
|
| + // location as determined by ContentBrowserClient.
|
| + net::Error Initialize(const FilePath& default_directory);
|
|
|
| // Write a new chunk of data to the file.
|
| // Returns net::OK on success (all bytes written to the file),
|
|
|