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 "base/strings/string16.h" | |
| 9 | |
| 10 // Returns true if |exe_path| points to a Chrome installed in an SxS | |
| 11 // installation. | |
| 12 bool IsCanary(const wchar_t* exe_path); | |
| 13 | |
| 14 // Returns true if |exe_path| points to a per-user level Chrome installation. | |
| 15 bool IsSystemInstall(const wchar_t* exe_path); | |
| 16 | |
| 17 // Returns true if current installation of Chrome is a multi-install. | |
| 18 bool IsMultiInstall(bool is_system_install); | |
| 19 | |
| 20 bool AreUsageStatsEnabled(const wchar_t* exe_path); | |
|
grt (UTC plus 2)
2014/02/14 16:37:33
docuemnt
Cait (Slow)
2014/02/14 23:12:04
Done.
| |
| 21 | |
| 22 bool GetUserSidString(base::string16* user_sid); | |
|
grt (UTC plus 2)
2014/02/14 16:37:33
document (and make it return the base::string16)
Cait (Slow)
2014/02/14 23:12:04
Moved into breakpad.cc anonymous namespace.
| |
| 23 | |
| 24 #endif // CHROME_ELF_CHROME_ELF_UTIL_H_ | |
| OLD | NEW |