Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1015)

Unified Diff: chrome/browser/extensions/api/downloads/downloads_api_unittest.cc

Issue 11275088: Remove implicit scoped_refptr operator T* Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/api/downloads/downloads_api_unittest.cc
diff --git a/chrome/browser/extensions/api/downloads/downloads_api_unittest.cc b/chrome/browser/extensions/api/downloads/downloads_api_unittest.cc
index 702d89ebc291b542148129a5a750981d75347591..5eafe072d454cb674c2abcc1fc93eaf776a17429 100644
--- a/chrome/browser/extensions/api/downloads/downloads_api_unittest.cc
+++ b/chrome/browser/extensions/api/downloads/downloads_api_unittest.cc
@@ -638,7 +638,7 @@ class TestProtocolHandler : public net::URLRequestJobFactory::ProtocolHandler {
network_delegate,
blob_storage_controller_->GetBlobDataFromUrl(request->url()),
file_system_context_,
- base::MessageLoopProxy::current());
+ base::MessageLoopProxy::current().get());
}
private:
@@ -748,7 +748,7 @@ class HTML5FileWriter {
blob_data_->AppendData(payload_);
url_request_context_.reset(new TestURLRequestContext(fs_));
url_request_context_->blob_storage_controller()->AddFinishedBlob(
- blob_url(), blob_data_);
+ blob_url(), blob_data_.get());
operation()->Write(
url_request_context_.get(),
fileapi::FileSystemURL(GURL(root_ + filename_)),

Powered by Google App Engine
This is Rietveld 408576698