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

Unified Diff: chrome/browser/web_applications/web_app_mac.mm

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
Index: chrome/browser/web_applications/web_app_mac.mm
diff --git a/chrome/browser/web_applications/web_app_mac.mm b/chrome/browser/web_applications/web_app_mac.mm
index ad99203666dde36ae3f1996701ffebc801b93e72..4288a2b50bd8bd52241660b9bfae9e242c61bc66 100644
--- a/chrome/browser/web_applications/web_app_mac.mm
+++ b/chrome/browser/web_applications/web_app_mac.mm
@@ -693,7 +693,7 @@ size_t WebAppShortcutCreator::CreateShortcutsIn(
return 0;
base::FilePath app_name = GetShortcutBasename();
- base::FilePath staging_path = scoped_temp_dir.path().Append(app_name);
+ base::FilePath staging_path = scoped_temp_dir.GetPath().Append(app_name);
if (!BuildShortcut(staging_path))
return 0;

Powered by Google App Engine
This is Rietveld 408576698