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

Unified Diff: base/debug/debugger_posix.cc

Issue 1852433005: Convert //base to use std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase after r384946 Created 4 years, 8 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
« no previous file with comments | « base/debug/close_handle_hook_win.cc ('k') | base/debug/leak_tracker_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/debug/debugger_posix.cc
diff --git a/base/debug/debugger_posix.cc b/base/debug/debugger_posix.cc
index cd6dc765b43bcea7e051b0542c1da608c592a327..e92d5a5619a6f113ad5b7adc5fdb92af7a541b46 100644
--- a/base/debug/debugger_posix.cc
+++ b/base/debug/debugger_posix.cc
@@ -3,8 +3,6 @@
// found in the LICENSE file.
#include "base/debug/debugger.h"
-#include "base/macros.h"
-#include "build/build_config.h"
#include <errno.h>
#include <fcntl.h>
@@ -16,8 +14,12 @@
#include <sys/types.h>
#include <unistd.h>
+#include <memory>
#include <vector>
+#include "base/macros.h"
+#include "build/build_config.h"
+
#if defined(__GLIBCXX__)
#include <cxxabi.h>
#endif
@@ -38,7 +40,6 @@
#include "base/debug/alias.h"
#include "base/logging.h"
-#include "base/memory/scoped_ptr.h"
#include "base/posix/eintr_wrapper.h"
#include "base/strings/string_piece.h"
« no previous file with comments | « base/debug/close_handle_hook_win.cc ('k') | base/debug/leak_tracker_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698