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

Unified Diff: content/public/browser/download_save_info.h

Issue 1874903002: Convert //content from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix indent 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 | « content/public/browser/download_manager.h ('k') | content/public/browser/download_url_parameters.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/download_save_info.h
diff --git a/content/public/browser/download_save_info.h b/content/public/browser/download_save_info.h
index bd901d38cd288f465993b4c3beaf82739ef359bf..69893f4bbd601f76f738644d3c8546d6e57ab8a5 100644
--- a/content/public/browser/download_save_info.h
+++ b/content/public/browser/download_save_info.h
@@ -7,10 +7,11 @@
#include <stdint.h>
+#include <memory>
+
#include "base/files/file.h"
#include "base/files/file_path.h"
#include "base/macros.h"
-#include "base/memory/scoped_ptr.h"
#include "content/common/content_export.h"
#include "crypto/secure_hash.h"
@@ -42,7 +43,7 @@ struct CONTENT_EXPORT DownloadSaveInfo {
// The state of the hash. If specified, this hash state must indicate the
// state of the partial file for the first |offset| bytes.
- scoped_ptr<crypto::SecureHash> hash_state;
+ std::unique_ptr<crypto::SecureHash> hash_state;
// SHA-256 hash of the first |offset| bytes of the file. Only used if |offset|
// is non-zero and either |file_path| or |file| specifies the file which
« no previous file with comments | « content/public/browser/download_manager.h ('k') | content/public/browser/download_url_parameters.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698