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

Unified Diff: chrome/browser/safe_browsing/download_feedback_service_unittest.cc

Issue 2321453002: c/browser, c/common, components S-W: Change ScopedTempDir::path() to GetPath() (Closed)
Patch Set: Just rebased 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/browser/safe_browsing/download_feedback_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/safe_browsing/download_feedback_service_unittest.cc
diff --git a/chrome/browser/safe_browsing/download_feedback_service_unittest.cc b/chrome/browser/safe_browsing/download_feedback_service_unittest.cc
index 1c11e93dd19d64505f6a55ecd74111cdd84efa6d..90cd6a65abcdf7ac85623b9607ac8da74b127d6c 100644
--- a/chrome/browser/safe_browsing/download_feedback_service_unittest.cc
+++ b/chrome/browser/safe_browsing/download_feedback_service_unittest.cc
@@ -147,7 +147,7 @@ class DownloadFeedbackServiceTest : public testing::Test {
base::FilePath CreateTestFile(int n) const {
base::FilePath upload_file_path(
- temp_dir_.path().AppendASCII("test file " + base::IntToString(n)));
+ temp_dir_.GetPath().AppendASCII("test file " + base::IntToString(n)));
const std::string upload_file_data = "data";
int wrote = base::WriteFile(
upload_file_path, upload_file_data.data(), upload_file_data.size());
« no previous file with comments | « no previous file | chrome/browser/safe_browsing/download_feedback_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698