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

Unified Diff: chrome/install_static/install_util.h

Issue 2031833002: Remove FilePath usage from the CrashReporterClient interface on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix build error Created 4 years, 7 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/install_static/install_util.h
diff --git a/chrome/install_static/install_util.h b/chrome/install_static/install_util.h
index 32f36e9dccc2eac26bcd3b98cd16805dd3d5d326..3ca633db4ede97904665a3dea150d5f8a43ae8c7 100644
--- a/chrome/install_static/install_util.h
+++ b/chrome/install_static/install_util.h
@@ -26,7 +26,6 @@ enum class ProcessType {
// http://crbug.com/604923
// The constants defined in this file are also defined in chrome/installer and
// other places. we need to unify them.
-
extern const wchar_t kChromeChannelUnknown[];
extern const wchar_t kChromeChannelCanary[];
extern const wchar_t kChromeChannelDev[];
@@ -44,6 +43,24 @@ extern const wchar_t kAppGuidCanary[];
extern const wchar_t kAppGuidGoogleChrome[];
extern const wchar_t kAppGuidGoogleBinaries[];
+// TODO(ananta)
+// http://crbug.com/604923
scottmg 2016/06/02 00:09:30 Use https://... (and below).
ananta 2016/06/02 00:22:57 Done.
+// Unify these constants with env_vars.h.
+extern const char kHeadless[];
+extern const char kShowRestart[];
+extern const char kRestartInfo[];
+extern const char kRtlLocale[];
+extern const char kLtrLocale[];
+
+// TODO(ananta)
+// http://crbug.com/604923
+// Unify these constants with those defiend in content_switches.h.
scottmg 2016/06/02 00:09:30 defined
ananta 2016/06/02 00:22:57 done
+extern const char kGpuProcess[];
+extern const char kPpapiPluginProcess[];
+extern const char kRendererProcess[];
+extern const char kUtilityProcess[];
+extern const char kZygoteProcess[];
+
// Returns true if |exe_path| points to a Chrome installed in an SxS
// installation.
bool IsSxSChrome(const wchar_t* exe_path);

Powered by Google App Engine
This is Rietveld 408576698