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

Unified Diff: chrome/test/logging/win/test_log_collector.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_unittest.cc ('k') | chrome/test/ppapi/ppapi_filechooser_browsertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/logging/win/test_log_collector.cc
diff --git a/chrome/test/logging/win/test_log_collector.cc b/chrome/test/logging/win/test_log_collector.cc
index 08945c2b1840a732d1b6fa93fd9e5b4fcd191828..6df07384fe9cbf22557f655cd7486921f684e241 100644
--- a/chrome/test/logging/win/test_log_collector.cc
+++ b/chrome/test/logging/win/test_log_collector.cc
@@ -220,7 +220,7 @@ void TestLogCollector::StartSessionForTest(const testing::TestInfo& test_info) {
std::string log_file_name(test_info.name());
std::replace(log_file_name.begin(), log_file_name.end(), '/', '_');
log_file_name.append(kTraceLogExtension);
- log_file_ = log_temp_dir_.path().AppendASCII(log_file_name);
+ log_file_ = log_temp_dir_.GetPath().AppendASCII(log_file_name);
file_logger_->StartLogging(log_file_);
}
« no previous file with comments | « chrome/test/chromedriver/util_unittest.cc ('k') | chrome/test/ppapi/ppapi_filechooser_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698