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

Unified Diff: content/test/test_content_browser_client.cc

Issue 2316043002: //content: Change ScopedTempDir::path() to GetPath() (Closed)
Patch Set: Fix service worker tests 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: content/test/test_content_browser_client.cc
diff --git a/content/test/test_content_browser_client.cc b/content/test/test_content_browser_client.cc
index c917f25b11f9eb89391fd5cb9e2b54f1d092d547..b766e537bbd56138edca58046d000241fa372829 100644
--- a/content/test/test_content_browser_client.cc
+++ b/content/test/test_content_browser_client.cc
@@ -20,7 +20,7 @@ base::FilePath TestContentBrowserClient::GetDefaultDownloadDirectory() {
bool result = download_dir_.CreateUniqueTempDir();
CHECK(result);
}
- return download_dir_.path();
+ return download_dir_.GetPath();
}
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698