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

Unified Diff: tools/crashpad_database_util.cc

Issue 1513573005: Provide std::move() in compat instead of using crashpad::move() (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Created 5 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 | « test/win/win_child_process.cc ('k') | util/mach/child_port_handshake.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/crashpad_database_util.cc
diff --git a/tools/crashpad_database_util.cc b/tools/crashpad_database_util.cc
index 50666f262270bd99ca21c29f8b0c5987324e901f..a1ad52b5aed358b0d789f4cb1849a1bf9b5b1fe7 100644
--- a/tools/crashpad_database_util.cc
+++ b/tools/crashpad_database_util.cc
@@ -22,6 +22,7 @@
#include <time.h>
#include <string>
+#include <utility>
#include <vector>
#include "base/basictypes.h"
@@ -36,7 +37,6 @@
#include "tools/tool_support.h"
#include "util/file/file_io.h"
#include "util/file/file_reader.h"
-#include "util/stdlib/move.h"
#include "util/misc/uuid.h"
namespace crashpad {
@@ -553,7 +553,7 @@ int DatabaseUtilMain(int argc, char* argv[]) {
return EXIT_FAILURE;
}
- file_reader = crashpad::move(file_path_reader);
+ file_reader = std::move(file_path_reader);
}
CrashReportDatabase::NewReport* new_report;
« no previous file with comments | « test/win/win_child_process.cc ('k') | util/mach/child_port_handshake.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698