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

Unified Diff: content/browser/download/save_package_browsertest.cc

Issue 2316043002: //content: 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
Index: content/browser/download/save_package_browsertest.cc
diff --git a/content/browser/download/save_package_browsertest.cc b/content/browser/download/save_package_browsertest.cc
index cca77cf4ac8c2401960ca7f8ecfac610c7ef9fc4..2e3fa59ba33ae893056e2277d83b87d4f08333d8 100644
--- a/content/browser/download/save_package_browsertest.cc
+++ b/content/browser/download/save_package_browsertest.cc
@@ -24,8 +24,8 @@ class SavePackageBrowserTest : public ContentBrowserTest {
void GetDestinationPaths(const std::string& prefix,
base::FilePath* full_file_name,
base::FilePath* dir) {
- *full_file_name = save_dir_.path().AppendASCII(prefix + ".htm");
- *dir = save_dir_.path().AppendASCII(prefix + "_files");
+ *full_file_name = save_dir_.GetPath().AppendASCII(prefix + ".htm");
+ *dir = save_dir_.GetPath().AppendASCII(prefix + "_files");
}
// Temporary directory we will save pages to.
« no previous file with comments | « content/browser/download/mhtml_generation_browsertest.cc ('k') | content/browser/download/save_package_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698