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

Unified Diff: chrome/service/service_utility_process_host.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/service/service_process_prefs_unittest.cc ('k') | chrome/test/base/in_process_browser_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/service/service_utility_process_host.cc
diff --git a/chrome/service/service_utility_process_host.cc b/chrome/service/service_utility_process_host.cc
index 04ba51fd17fbfaa34ff0e6e01184684d0a0c6cf6..5c55b0abf1bf2f035203965e638d7915c1b4a403 100644
--- a/chrome/service/service_utility_process_host.cc
+++ b/chrome/service/service_utility_process_host.cc
@@ -145,7 +145,7 @@ class ServiceUtilityProcessHost::PdfToEmfState {
base::File CreateTempFile() {
base::FilePath path;
- if (!base::CreateTemporaryFileInDir(temp_dir_.path(), &path))
+ if (!base::CreateTemporaryFileInDir(temp_dir_.GetPath(), &path))
return base::File();
return base::File(path,
base::File::FLAG_CREATE_ALWAYS |
« no previous file with comments | « chrome/service/service_process_prefs_unittest.cc ('k') | chrome/test/base/in_process_browser_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698