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

Unified Diff: chrome/test/chromedriver/util_unittest.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 | « chrome/test/chromedriver/util.cc ('k') | chrome/test/logging/win/test_log_collector.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/chromedriver/util_unittest.cc
diff --git a/chrome/test/chromedriver/util_unittest.cc b/chrome/test/chromedriver/util_unittest.cc
index d68dd36a6bcebad9d900f875641eb483583812b3..95cdc9b50c47819ef2be50a8ab7fb6fe8b9972b6 100644
--- a/chrome/test/chromedriver/util_unittest.cc
+++ b/chrome/test/chromedriver/util_unittest.cc
@@ -23,7 +23,7 @@ TEST(UnzipSoleFile, Entry) {
"cCAFBLBwi/wAzGBgAAAAQAAAA=";
ASSERT_TRUE(base::Base64Decode(kBase64ZipEntry, &data));
base::FilePath file;
- Status status = UnzipSoleFile(temp_dir.path(), data, &file);
+ Status status = UnzipSoleFile(temp_dir.GetPath(), data, &file);
ASSERT_EQ(kOk, status.code()) << status.message();
std::string contents;
ASSERT_TRUE(base::ReadFileToString(file, &contents));
@@ -42,7 +42,7 @@ TEST(UnzipSoleFile, Archive) {
"A";
ASSERT_TRUE(base::Base64Decode(kBase64ZipArchive, &data));
base::FilePath file;
- Status status = UnzipSoleFile(temp_dir.path(), data, &file);
+ Status status = UnzipSoleFile(temp_dir.GetPath(), data, &file);
ASSERT_EQ(kOk, status.code()) << status.message();
std::string contents;
ASSERT_TRUE(base::ReadFileToString(file, &contents));
« no previous file with comments | « chrome/test/chromedriver/util.cc ('k') | chrome/test/logging/win/test_log_collector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698