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

Unified Diff: chrome/browser/sync_file_system/local/canned_syncable_file_system.h

Issue 515093002: FileAPI/sync file system cleanups for scoped_refptr operator T* cleanup. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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/sync_file_system/local/canned_syncable_file_system.h
diff --git a/chrome/browser/sync_file_system/local/canned_syncable_file_system.h b/chrome/browser/sync_file_system/local/canned_syncable_file_system.h
index 1616ec1e0c8fdae27a0a5452262d3bcc3d0b3a29..83b6583f420ef5ae0437f834a009998bc707db3f 100644
--- a/chrome/browser/sync_file_system/local/canned_syncable_file_system.h
+++ b/chrome/browser/sync_file_system/local/canned_syncable_file_system.h
@@ -70,10 +70,11 @@ class CannedSyncableFileSystem
QUOTA_DISABLED,
};
- CannedSyncableFileSystem(const GURL& origin,
- leveldb::Env* env_override,
- base::SingleThreadTaskRunner* io_task_runner,
- base::SingleThreadTaskRunner* file_task_runner);
+ CannedSyncableFileSystem(
+ const GURL& origin,
+ leveldb::Env* env_override,
+ const scoped_refptr<base::SingleThreadTaskRunner>& io_task_runner,
+ const scoped_refptr<base::SingleThreadTaskRunner>& file_task_runner);
virtual ~CannedSyncableFileSystem();
// SetUp must be called before using this instance.

Powered by Google App Engine
This is Rietveld 408576698