chrome: Kill the base::Passed(foo.Pass()) meme.

This can be simply spelled as base::Passed(&foo).

BUG=155593
[email protected]


Review URL: https://chromiumcodereview.appspot.com/12194008

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180338 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/content/browser/download/download_manager_impl.cc b/content/browser/download/download_manager_impl.cc
index f8dc40e..8975b4da 100644
--- a/content/browser/download/download_manager_impl.cc
+++ b/content/browser/download/download_manager_impl.cc
@@ -502,7 +502,7 @@
   BrowserThread::PostTask(
       BrowserThread::IO,
       FROM_HERE,
-      base::Bind(&BeginDownload, base::Passed(params.Pass()), id));
+      base::Bind(&BeginDownload, base::Passed(&params), id));
 }
 
 void DownloadManagerImpl::SetDownloadItemFactoryForTesting(