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

Unified Diff: chrome/browser/chromeos/file_manager/file_manager_browsertest_base.h

Issue 1870793002: Convert //chrome/browser/chromeos from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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: chrome/browser/chromeos/file_manager/file_manager_browsertest_base.h
diff --git a/chrome/browser/chromeos/file_manager/file_manager_browsertest_base.h b/chrome/browser/chromeos/file_manager/file_manager_browsertest_base.h
index 5cb319d2347217b7b8b36b55e954ae44fab21de6..e2c426af0f29709e0cb3fe27e397825b330b89ac 100644
--- a/chrome/browser/chromeos/file_manager/file_manager_browsertest_base.h
+++ b/chrome/browser/chromeos/file_manager/file_manager_browsertest_base.h
@@ -59,18 +59,18 @@ class FileManagerBrowserTestBase : public ExtensionApiTest {
const base::DictionaryValue& value,
std::string* output);
- scoped_ptr<LocalTestVolume> local_volume_;
+ std::unique_ptr<LocalTestVolume> local_volume_;
linked_ptr<DriveTestVolume> drive_volume_;
std::map<Profile*, linked_ptr<DriveTestVolume>> drive_volumes_;
- scoped_ptr<FakeTestVolume> usb_volume_;
- scoped_ptr<FakeTestVolume> mtp_volume_;
+ std::unique_ptr<FakeTestVolume> usb_volume_;
+ std::unique_ptr<FakeTestVolume> mtp_volume_;
private:
drive::DriveIntegrationService* CreateDriveIntegrationService(
Profile* profile);
drive::DriveIntegrationServiceFactory::FactoryCallback
create_drive_integration_service_;
- scoped_ptr<drive::DriveIntegrationServiceFactory::ScopedFactoryForTest>
+ std::unique_ptr<drive::DriveIntegrationServiceFactory::ScopedFactoryForTest>
service_factory_for_test_;
};

Powered by Google App Engine
This is Rietveld 408576698