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

Unified Diff: storage/browser/fileapi/file_system_operation_impl.cc

Issue 1775453002: Replace base::Tuple in //storage with std::tuple (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update #include Created 4 years, 9 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: storage/browser/fileapi/file_system_operation_impl.cc
diff --git a/storage/browser/fileapi/file_system_operation_impl.cc b/storage/browser/fileapi/file_system_operation_impl.cc
index 15700f060c4e17eb4cf27b287fd0ceed33c0e5e0..74ba055922ea8ef4b2cb8f90a56198c6124eb79c 100644
--- a/storage/browser/fileapi/file_system_operation_impl.cc
+++ b/storage/browser/fileapi/file_system_operation_impl.cc
@@ -6,6 +6,7 @@
#include <stdint.h>
#include <limits>
+#include <tuple>
#include <utility>
#include "base/bind.h"
@@ -581,7 +582,7 @@ void FileSystemOperationImpl::DidWrite(
if (complete && write_status != FileWriterDelegate::ERROR_WRITE_NOT_STARTED) {
DCHECK(operation_context_);
operation_context_->change_observers()->Notify(
- &FileChangeObserver::OnModifyFile, base::MakeTuple(url));
+ &FileChangeObserver::OnModifyFile, std::make_tuple(url));
}
StatusCallback cancel_callback = cancel_callback_;

Powered by Google App Engine
This is Rietveld 408576698