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

Unified Diff: webkit/browser/fileapi/file_system_dir_url_request_job_unittest.cc

Issue 16155009: Update webkit/ to use scoped_refptr<T>::get() rather than implicit "operator T*" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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: webkit/browser/fileapi/file_system_dir_url_request_job_unittest.cc
diff --git a/webkit/browser/fileapi/file_system_dir_url_request_job_unittest.cc b/webkit/browser/fileapi/file_system_dir_url_request_job_unittest.cc
index f8cc7de3ae8e9a7bf97e45e1f898489dc98cbd3c..153752e9d40622e2a09647f691d3d63a9391f0e2 100644
--- a/webkit/browser/fileapi/file_system_dir_url_request_job_unittest.cc
+++ b/webkit/browser/fileapi/file_system_dir_url_request_job_unittest.cc
@@ -106,8 +106,8 @@ class FileSystemDirURLRequestJobTest : public testing::Test {
}
FileSystemOperationContext* NewOperationContext() {
- FileSystemOperationContext* context(new FileSystemOperationContext(
- file_system_context_));
+ FileSystemOperationContext* context(
+ new FileSystemOperationContext(file_system_context_.get()));
context->set_allowed_bytes_growth(1024);
return context;
}

Powered by Google App Engine
This is Rietveld 408576698