| Index: chrome/browser/chromeos/file_system_provider/mount_path_util_unittest.cc
|
| diff --git a/chrome/browser/chromeos/file_system_provider/mount_path_util_unittest.cc b/chrome/browser/chromeos/file_system_provider/mount_path_util_unittest.cc
|
| index 9bca244fda86f934b3010e160af810037879e355..988138faf8e20b3cb774a8381cbbd1eb9523e383 100644
|
| --- a/chrome/browser/chromeos/file_system_provider/mount_path_util_unittest.cc
|
| +++ b/chrome/browser/chromeos/file_system_provider/mount_path_util_unittest.cc
|
| @@ -4,10 +4,10 @@
|
|
|
| #include "chrome/browser/chromeos/file_system_provider/mount_path_util.h"
|
|
|
| +#include <memory>
|
| #include <string>
|
|
|
| #include "base/files/file.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "chrome/browser/chromeos/file_system_provider/fake_provided_file_system.h"
|
| #include "chrome/browser/chromeos/file_system_provider/provided_file_system_interface.h"
|
| #include "chrome/browser/chromeos/file_system_provider/service.h"
|
| @@ -78,9 +78,9 @@ class FileSystemProviderMountPathUtilTest : public testing::Test {
|
| }
|
|
|
| content::TestBrowserThreadBundle thread_bundle_;
|
| - scoped_ptr<TestingProfileManager> profile_manager_;
|
| + std::unique_ptr<TestingProfileManager> profile_manager_;
|
| TestingProfile* profile_; // Owned by TestingProfileManager.
|
| - scoped_ptr<ScopedUserManagerEnabler> user_manager_enabler_;
|
| + std::unique_ptr<ScopedUserManagerEnabler> user_manager_enabler_;
|
| FakeChromeUserManager* user_manager_;
|
| Service* file_system_provider_service_; // Owned by its factory.
|
| };
|
|
|