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

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

Issue 16907002: Update Android to use scoped_refptr<T>::get() rather than implicit "operator T*" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 7 years, 6 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
« no previous file with comments | « net/ssl/openssl_client_key_store_unittest.cc ('k') | webkit/browser/fileapi/sandbox_file_stream_writer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/browser/fileapi/file_system_usage_cache.cc
diff --git a/webkit/browser/fileapi/file_system_usage_cache.cc b/webkit/browser/fileapi/file_system_usage_cache.cc
index bad78bbf1e5f5dd20f4958387f0bdf361b9ad50f..a049f3d58b83c3205e40a241eba76ad4f318a9dc 100644
--- a/webkit/browser/fileapi/file_system_usage_cache.cc
+++ b/webkit/browser/fileapi/file_system_usage_cache.cc
@@ -289,7 +289,7 @@ bool FileSystemUsageCache::FlushFile(const base::FilePath& file_path) {
void FileSystemUsageCache::ScheduleCloseTimer() {
DCHECK(CalledOnValidThread());
if (!timer_)
- timer_.reset(new TimedTaskHelper(task_runner_));
+ timer_.reset(new TimedTaskHelper(task_runner_.get()));
if (timer_->IsRunning()) {
timer_->Reset();
« no previous file with comments | « net/ssl/openssl_client_key_store_unittest.cc ('k') | webkit/browser/fileapi/sandbox_file_stream_writer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698