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

Unified Diff: storage/browser/fileapi/file_system_operation_runner.h

Issue 2496653002: Part 2 of base::IDMap refactor to eliminate IDMapOwnPointer/IDMapExternalPointer modes (Closed)
Patch Set: Rebase Created 4 years 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: storage/browser/fileapi/file_system_operation_runner.h
diff --git a/storage/browser/fileapi/file_system_operation_runner.h b/storage/browser/fileapi/file_system_operation_runner.h
index a59058a0946a28a3e605f3f977192e8c87301480..dc9a81f2b4380887ecda3d6193c16de87578385a 100644
--- a/storage/browser/fileapi/file_system_operation_runner.h
+++ b/storage/browser/fileapi/file_system_operation_runner.h
@@ -307,8 +307,8 @@ class STORAGE_EXPORT FileSystemOperationRunner
// Not owned; file_system_context owns this.
FileSystemContext* file_system_context_;
- // IDMap<FileSystemOperation, IDMapOwnPointer> operations_;
- IDMap<FileSystemOperation, IDMapOwnPointer> operations_;
+ // IDMap<std::unique_ptr<FileSystemOperation>> operations_;
+ IDMap<std::unique_ptr<FileSystemOperation>> operations_;
// We keep track of the file to be modified by each operation so that
// we can notify observers when we're done.

Powered by Google App Engine
This is Rietveld 408576698