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

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: typedefs => using statements, update comments in base/id_map.h 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
« no previous file with comments | « ipc/message_router.h ('k') | ui/ozone/platform/headless/headless_window_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « ipc/message_router.h ('k') | ui/ozone/platform/headless/headless_window_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698