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

Unified Diff: content/public/test/test_file_error_injector.cc

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/test/test_file_error_injector.h ('k') | content/public/test/test_file_system_backend.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/test/test_file_error_injector.cc
diff --git a/content/public/test/test_file_error_injector.cc b/content/public/test/test_file_error_injector.cc
index c625cb0097fe83615cb13195a1b672cbaf87bfe7..362d71086f2a90ad876fee1b7955b85e828bcba4 100644
--- a/content/public/test/test_file_error_injector.cc
+++ b/content/public/test/test_file_error_injector.cc
@@ -26,9 +26,9 @@ namespace {
// A class that performs file operations and injects errors.
class DownloadFileWithError: public DownloadFileImpl {
public:
- DownloadFileWithError(scoped_ptr<DownloadSaveInfo> save_info,
+ DownloadFileWithError(std::unique_ptr<DownloadSaveInfo> save_info,
const base::FilePath& default_download_directory,
- scoped_ptr<ByteStreamReader> byte_stream,
+ std::unique_ptr<ByteStreamReader> byte_stream,
const net::BoundNetLog& bound_net_log,
base::WeakPtr<DownloadDestinationObserver> observer,
const TestFileErrorInjector::FileErrorInfo& error_info,
@@ -95,9 +95,9 @@ static void RenameErrorCallback(
}
DownloadFileWithError::DownloadFileWithError(
- scoped_ptr<DownloadSaveInfo> save_info,
+ std::unique_ptr<DownloadSaveInfo> save_info,
const base::FilePath& default_download_directory,
- scoped_ptr<ByteStreamReader> byte_stream,
+ std::unique_ptr<ByteStreamReader> byte_stream,
const net::BoundNetLog& bound_net_log,
base::WeakPtr<DownloadDestinationObserver> observer,
const TestFileErrorInjector::FileErrorInfo& error_info,
@@ -249,9 +249,9 @@ class DownloadFileWithErrorFactory : public DownloadFileFactory {
// DownloadFileFactory interface.
DownloadFile* CreateFile(
- scoped_ptr<DownloadSaveInfo> save_info,
+ std::unique_ptr<DownloadSaveInfo> save_info,
const base::FilePath& default_download_directory,
- scoped_ptr<ByteStreamReader> byte_stream,
+ std::unique_ptr<ByteStreamReader> byte_stream,
const net::BoundNetLog& bound_net_log,
base::WeakPtr<DownloadDestinationObserver> observer) override;
@@ -279,9 +279,9 @@ DownloadFileWithErrorFactory::DownloadFileWithErrorFactory(
DownloadFileWithErrorFactory::~DownloadFileWithErrorFactory() {}
DownloadFile* DownloadFileWithErrorFactory::CreateFile(
- scoped_ptr<DownloadSaveInfo> save_info,
+ std::unique_ptr<DownloadSaveInfo> save_info,
const base::FilePath& default_download_directory,
- scoped_ptr<ByteStreamReader> byte_stream,
+ std::unique_ptr<ByteStreamReader> byte_stream,
const net::BoundNetLog& bound_net_log,
base::WeakPtr<DownloadDestinationObserver> observer) {
return new DownloadFileWithError(std::move(save_info),
@@ -310,8 +310,7 @@ TestFileErrorInjector::TestFileErrorInjector(DownloadManager* download_manager)
base::Bind(&TestFileErrorInjector::RecordDownloadFileDestruction, this));
// We will transfer ownership of the factory to the download manager.
- scoped_ptr<DownloadFileFactory> download_file_factory(
- created_factory_);
+ std::unique_ptr<DownloadFileFactory> download_file_factory(created_factory_);
download_manager_->SetDownloadFileFactoryForTesting(
std::move(download_file_factory));
« no previous file with comments | « content/public/test/test_file_error_injector.h ('k') | content/public/test/test_file_system_backend.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698