| Index: content/browser/download/download_item_impl.cc
|
| diff --git a/content/browser/download/download_item_impl.cc b/content/browser/download/download_item_impl.cc
|
| index 15e95129a4e5be151a42be8cf1fd3fabe9cfb35c..733df1c91e98c00e3f742e0e0383b90dd36faf39 100644
|
| --- a/content/browser/download/download_item_impl.cc
|
| +++ b/content/browser/download/download_item_impl.cc
|
| @@ -93,7 +93,7 @@ static void DownloadFileCancel(scoped_ptr<DownloadFile> download_file) {
|
| }
|
|
|
| bool IsDownloadResumptionEnabled() {
|
| - return CommandLine::ForCurrentProcess()->HasSwitch(
|
| + return base::CommandLine::ForCurrentProcess()->HasSwitch(
|
| switches::kEnableDownloadResumption);
|
| }
|
|
|
| @@ -1682,7 +1682,8 @@ void DownloadItemImpl::ResumeInterruptedDownload() {
|
|
|
| // If the flag for downloads resumption isn't enabled, ignore
|
| // this request.
|
| - const CommandLine& command_line = *CommandLine::ForCurrentProcess();
|
| + const base::CommandLine& command_line =
|
| + *base::CommandLine::ForCurrentProcess();
|
| if (!command_line.HasSwitch(switches::kEnableDownloadResumption))
|
| return;
|
|
|
|
|