Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_ELF_CHROME_ELF_UTIL_H_ | |
| 6 #define CHROME_ELF_CHROME_ELF_UTIL_H_ | |
| 7 | |
| 8 #include <windows.h> | |
| 9 | |
| 10 // Returns true if |exe_path| points to a Chrome installed in a SxS | |
| 11 // installation. | |
| 12 bool IsCanary(LPWSTR exe_path); | |
|
robertshield
2014/02/11 22:26:58
use "const wchar_t*" here and below instead.
Cait (Slow)
2014/02/12 19:15:41
Done.
| |
| 13 | |
| 14 // Returns true if |exe_path| points to a per-user level Chrome installation. | |
| 15 bool IsSystemInstall(LPWSTR exe_path); | |
| 16 | |
| 17 // Returns true if |exe_path| points to a multi-install of Chrome. | |
| 18 bool IsMultiInstall(LPWSTR exe_path); | |
| 19 | |
| 20 bool AreUsageStatsEnabled(); | |
| 21 | |
| 22 #endif // CHROME_ELF_CHROME_ELF_UTIL_H_ | |
| OLD | NEW |