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

Unified Diff: chromeos/binder/transaction_data_read_write_unittest.cc

Issue 2318023002: //chrome/browser/chromeos: Change ScopedTempDir::path() to GetPath() (Closed)
Patch Set: Address comment and also remove non-trivial cases 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 | « chromeos/binder/test_service.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/binder/transaction_data_read_write_unittest.cc
diff --git a/chromeos/binder/transaction_data_read_write_unittest.cc b/chromeos/binder/transaction_data_read_write_unittest.cc
index b713a82a8c0a4a3015af6b39b4da41ffaa9fd4ec..347d092efdceb9dfa244833845de9b9646410505 100644
--- a/chromeos/binder/transaction_data_read_write_unittest.cc
+++ b/chromeos/binder/transaction_data_read_write_unittest.cc
@@ -284,7 +284,7 @@ TEST(BinderTransactionDataReadWriteTest, FileDescriptor) {
base::ScopedTempDir temp_dir;
ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
base::FilePath path;
- ASSERT_TRUE(base::CreateTemporaryFileInDir(temp_dir.path(), &path));
+ ASSERT_TRUE(base::CreateTemporaryFileInDir(temp_dir.GetPath(), &path));
base::File file(path, base::File::FLAG_OPEN | base::File::FLAG_READ);
ASSERT_TRUE(file.IsValid());
« no previous file with comments | « chromeos/binder/test_service.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698