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

Unified Diff: components/drive/drive_api_util_unittest.cc

Issue 2317993003: //chrome/browser and //components A-E: Change ScopedTempDir::path() to GetPath() (Closed)
Patch Set: Just rebased 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
« no previous file with comments | « components/drive/directory_loader_unittest.cc ('k') | components/drive/drive_uploader_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/drive/drive_api_util_unittest.cc
diff --git a/components/drive/drive_api_util_unittest.cc b/components/drive/drive_api_util_unittest.cc
index a5247d3fc06fd9650b54c90e4b582678e2936672..a9f1741fcefde02c4e5023de14cb4502b903885c 100644
--- a/components/drive/drive_api_util_unittest.cc
+++ b/components/drive/drive_api_util_unittest.cc
@@ -71,7 +71,7 @@ TEST(DriveAPIUtilTest, GetMd5Digest) {
base::ScopedTempDir temp_dir;
ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
- base::FilePath path = temp_dir.path().AppendASCII("test.txt");
+ base::FilePath path = temp_dir.GetPath().AppendASCII("test.txt");
const char kTestData[] = "abcdefghijklmnopqrstuvwxyz0123456789";
ASSERT_TRUE(google_apis::test_util::WriteStringToFile(path, kTestData));
« no previous file with comments | « components/drive/directory_loader_unittest.cc ('k') | components/drive/drive_uploader_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698