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

Unified Diff: chrome/browser/sync_file_system/local/local_file_sync_service_unittest.cc

Issue 2317023003: sync and signin: 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
Index: chrome/browser/sync_file_system/local/local_file_sync_service_unittest.cc
diff --git a/chrome/browser/sync_file_system/local/local_file_sync_service_unittest.cc b/chrome/browser/sync_file_system/local/local_file_sync_service_unittest.cc
index 41c81cac6880c710f6817bcca2ae763eaddb8392..0efab1885e0f1d00c6f1e9bf84d470b924a14fea 100644
--- a/chrome/browser/sync_file_system/local/local_file_sync_service_unittest.cc
+++ b/chrome/browser/sync_file_system/local/local_file_sync_service_unittest.cc
@@ -217,7 +217,7 @@ TEST_F(LocalFileSyncServiceTest, RemoteSyncStepsSimple) {
const int kTestFileDataSize = static_cast<int>(arraysize(kTestFileData) - 1);
base::FilePath local_path;
- ASSERT_TRUE(base::CreateTemporaryFileInDir(temp_dir_.path(), &local_path));
+ ASSERT_TRUE(base::CreateTemporaryFileInDir(temp_dir_.GetPath(), &local_path));
ASSERT_EQ(kTestFileDataSize,
base::WriteFile(local_path, kTestFileData, kTestFileDataSize));

Powered by Google App Engine
This is Rietveld 408576698