Chromium Code Reviews| 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); |