| Index: client/crash_report_database_win.cc
|
| diff --git a/client/crash_report_database_win.cc b/client/crash_report_database_win.cc
|
| index fff340af906962f9c90da625f9402ca4a85292b8..d7968bd1ca8897771b32525faf9cb7c66660b26b 100644
|
| --- a/client/crash_report_database_win.cc
|
| +++ b/client/crash_report_database_win.cc
|
| @@ -18,6 +18,8 @@
|
| #include <time.h>
|
| #include <windows.h>
|
|
|
| +#include <utility>
|
| +
|
| #include "base/logging.h"
|
| #include "base/numerics/safe_math.h"
|
| #include "base/strings/string16.h"
|
| @@ -25,7 +27,6 @@
|
| #include "base/strings/utf_string_conversions.h"
|
| #include "client/settings.h"
|
| #include "util/misc/initialization_state_dcheck.h"
|
| -#include "util/stdlib/move.h"
|
|
|
| namespace crashpad {
|
|
|
| @@ -822,7 +823,7 @@ scoped_ptr<CrashReportDatabase> InitializeInternal(
|
| scoped_ptr<CrashReportDatabaseWin> database_win(
|
| new CrashReportDatabaseWin(path));
|
| return database_win->Initialize(may_create)
|
| - ? crashpad::move(database_win)
|
| + ? std::move(database_win)
|
| : scoped_ptr<CrashReportDatabaseWin>();
|
| }
|
|
|
|
|