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

Unified Diff: components/net_log/net_log_file_writer_unittest.cc

Issue 2318033002: c/browser, c/common, components M-N: Change ScopedTempDir::path() to GetPath() (Closed)
Patch Set: Fix ItunesFileUtilTest 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: components/net_log/net_log_file_writer_unittest.cc
diff --git a/components/net_log/net_log_file_writer_unittest.cc b/components/net_log/net_log_file_writer_unittest.cc
index 467727f6797e9733e0c1b958a417fae9035fde92..47b80833e702a7b93da0ac29c5c4b610be30bbb3 100644
--- a/components/net_log/net_log_file_writer_unittest.cc
+++ b/components/net_log/net_log_file_writer_unittest.cc
@@ -48,7 +48,7 @@ class TestNetLogFileWriter : public NetLogFileWriter {
bool GetNetExportLogBaseDirectory(base::FilePath* path) const override {
if (lie_about_net_export_log_directory_)
return false;
- *path = net_log_temp_dir_.path();
+ *path = net_log_temp_dir_.GetPath();
return true;
}

Powered by Google App Engine
This is Rietveld 408576698