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

Unified Diff: chrome/common/chrome_paths_win.cc

Issue 1546673002: Add the crash client ID to the uninstall URL params. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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/common/chrome_paths_win.cc
diff --git a/chrome/common/chrome_paths_win.cc b/chrome/common/chrome_paths_win.cc
index 18073ca04759a79e61e08025286c86dd5ef4061f..6246255e9afca7dc6b1582a2894d0521ebf5fa61 100644
--- a/chrome/common/chrome_paths_win.cc
+++ b/chrome/common/chrome_paths_win.cc
@@ -119,4 +119,11 @@ bool ProcessNeedsProfileDir(const std::string& process_type) {
return false;
}
+bool GetDefaultCrashDumpLocation(base::FilePath* crash_dir) {
+ if (!GetDefaultUserDataDirectory(crash_dir))
+ return false;
+ *crash_dir = crash_dir->Append(FILE_PATH_LITERAL("Crashpad"));
+ return true;
+}
+
} // namespace chrome

Powered by Google App Engine
This is Rietveld 408576698