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

Unified Diff: chrome/installer/mini_installer/decompress_test.cc

Issue 2321573002: //chrome misc: Change ScopedTempDir::path() to GetPath() (Closed)
Patch Set: Fix Win compilation 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 | « no previous file | chrome/installer/setup/archive_patch_helper_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/mini_installer/decompress_test.cc
diff --git a/chrome/installer/mini_installer/decompress_test.cc b/chrome/installer/mini_installer/decompress_test.cc
index a9149b0320e945abcd2dbdf601ef0c8a7303ab1a..a0ca469f7d879e58f4b09b88a9001d6751e9963c 100644
--- a/chrome/installer/mini_installer/decompress_test.cc
+++ b/chrome/installer/mini_installer/decompress_test.cc
@@ -24,7 +24,7 @@ TEST(MiniDecompressTest, ExpandTest) {
base::ScopedTempDir temp_dir;
EXPECT_TRUE(temp_dir.CreateUniqueTempDir());
base::FilePath dest_path(
- temp_dir.path().Append(FILE_PATH_LITERAL("setup.exe")));
+ temp_dir.GetPath().Append(FILE_PATH_LITERAL("setup.exe")));
// Decompress our test file.
EXPECT_TRUE(mini_installer::Expand(source_path.value().c_str(),
« no previous file with comments | « no previous file | chrome/installer/setup/archive_patch_helper_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698