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

Unified Diff: chrome/browser/chromeos/file_manager/fileapi_util_unittest.cc

Issue 2345473002: Change ScopedTempDir::path() to GetPath() in chrome/browser/chromeos/file_manager (Closed)
Patch Set: Created 4 years, 3 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/fileapi_util_unittest.cc
diff --git a/chrome/browser/chromeos/file_manager/fileapi_util_unittest.cc b/chrome/browser/chromeos/file_manager/fileapi_util_unittest.cc
index f0db18efd6a216261f8aed6f327b43fbeb21f62d..270f3db2744e151365cba9766f6a90d21334b77d 100644
--- a/chrome/browser/chromeos/file_manager/fileapi_util_unittest.cc
+++ b/chrome/browser/chromeos/file_manager/fileapi_util_unittest.cc
@@ -55,7 +55,7 @@ TEST(FileManagerFileAPIUtilTest,
base::ScopedTempDir drive_cache_dir;
ASSERT_TRUE(drive_cache_dir.CreateUniqueTempDir());
drive::DriveIntegrationServiceFactory::FactoryCallback factory_callback(
- base::Bind(&CreateDriveIntegrationService, drive_cache_dir.path()));
+ base::Bind(&CreateDriveIntegrationService, drive_cache_dir.GetPath()));
drive::DriveIntegrationServiceFactory::ScopedFactoryForTest
integration_service_factory_scope(&factory_callback);

Powered by Google App Engine
This is Rietveld 408576698