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

Unified Diff: base/process/memory_win.cc

Issue 1852433005: Convert //base to use std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove redundant base:: prefix 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
Index: base/process/memory_win.cc
diff --git a/base/process/memory_win.cc b/base/process/memory_win.cc
index 979a66e193d45862f60a11756885b1d2ad07dd9b..2f44fd61cccd578de1ca85d0a4217243068b03a1 100644
--- a/base/process/memory_win.cc
+++ b/base/process/memory_win.cc
@@ -8,8 +8,9 @@
#include <psapi.h>
#include <stddef.h>
+#include <memory>
Nico 2016/04/04 17:14:56 unused
dcheng 2016/04/04 17:43:39 Done.
+
#include "base/logging.h"
-#include "base/memory/scoped_ptr.h"
// malloc_unchecked is required to implement UncheckedMalloc properly.
// It's provided by allocator_shim_win.cc but since that's not always present,

Powered by Google App Engine
This is Rietveld 408576698