mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 944529: Obtain HDD info for GRE path and Windows directory; r=froydnj
This commit is contained in:
parent
de7c513c3b
commit
fc6cc3bdcf
@ -360,7 +360,8 @@ TelemetryPing.prototype = {
|
|||||||
"hasMMX", "hasSSE", "hasSSE2", "hasSSE3",
|
"hasMMX", "hasSSE", "hasSSE2", "hasSSE3",
|
||||||
"hasSSSE3", "hasSSE4A", "hasSSE4_1", "hasSSE4_2",
|
"hasSSSE3", "hasSSE4A", "hasSSE4_1", "hasSSE4_2",
|
||||||
"hasEDSP", "hasARMv6", "hasARMv7", "hasNEON", "isWow64",
|
"hasEDSP", "hasARMv6", "hasARMv7", "hasNEON", "isWow64",
|
||||||
"profileHDDModel", "profileHDDRevision"];
|
"profileHDDModel", "profileHDDRevision", "binHDDModel",
|
||||||
|
"binHDDRevision", "winHDDModel", "winHDDRevision"];
|
||||||
for each (let field in fields) {
|
for each (let field in fields) {
|
||||||
let value;
|
let value;
|
||||||
try {
|
try {
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
#include <winioctl.h>
|
#include <winioctl.h>
|
||||||
#include "base/scoped_handle_win.h"
|
#include "base/scoped_handle_win.h"
|
||||||
#include "nsAppDirectoryServiceDefs.h"
|
#include "nsAppDirectoryServiceDefs.h"
|
||||||
|
#include "nsDirectoryServiceDefs.h"
|
||||||
#include "nsDirectoryServiceUtils.h"
|
#include "nsDirectoryServiceUtils.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -41,13 +42,14 @@ NS_EXPORT int android_sdk_version;
|
|||||||
|
|
||||||
#if defined(XP_WIN)
|
#if defined(XP_WIN)
|
||||||
namespace {
|
namespace {
|
||||||
nsresult GetProfileHDDInfo(nsAutoCString& aModel, nsAutoCString& aRevision)
|
nsresult GetHDDInfo(const char* aSpecialDirName, nsAutoCString& aModel,
|
||||||
|
nsAutoCString& aRevision)
|
||||||
{
|
{
|
||||||
aModel.Truncate();
|
aModel.Truncate();
|
||||||
aRevision.Truncate();
|
aRevision.Truncate();
|
||||||
|
|
||||||
nsCOMPtr<nsIFile> profDir;
|
nsCOMPtr<nsIFile> profDir;
|
||||||
nsresult rv = NS_GetSpecialDirectory(NS_APP_USER_PROFILE_50_DIR,
|
nsresult rv = NS_GetSpecialDirectory(aSpecialDirName,
|
||||||
getter_AddRefs(profDir));
|
getter_AddRefs(profDir));
|
||||||
NS_ENSURE_SUCCESS(rv, rv);
|
NS_ENSURE_SUCCESS(rv, rv);
|
||||||
nsAutoString profDirPath;
|
nsAutoString profDirPath;
|
||||||
@ -198,13 +200,28 @@ nsSystemInfo::Init()
|
|||||||
return rv;
|
return rv;
|
||||||
}
|
}
|
||||||
nsAutoCString hddModel, hddRevision;
|
nsAutoCString hddModel, hddRevision;
|
||||||
if (NS_SUCCEEDED(GetProfileHDDInfo(hddModel, hddRevision))) {
|
if (NS_SUCCEEDED(GetHDDInfo(NS_APP_USER_PROFILE_50_DIR, hddModel,
|
||||||
|
hddRevision))) {
|
||||||
rv = SetPropertyAsACString(NS_LITERAL_STRING("profileHDDModel"), hddModel);
|
rv = SetPropertyAsACString(NS_LITERAL_STRING("profileHDDModel"), hddModel);
|
||||||
NS_ENSURE_SUCCESS(rv, rv);
|
NS_ENSURE_SUCCESS(rv, rv);
|
||||||
rv = SetPropertyAsACString(NS_LITERAL_STRING("profileHDDRevision"),
|
rv = SetPropertyAsACString(NS_LITERAL_STRING("profileHDDRevision"),
|
||||||
hddRevision);
|
hddRevision);
|
||||||
NS_ENSURE_SUCCESS(rv, rv);
|
NS_ENSURE_SUCCESS(rv, rv);
|
||||||
}
|
}
|
||||||
|
if (NS_SUCCEEDED(GetHDDInfo(NS_GRE_DIR, hddModel, hddRevision))) {
|
||||||
|
rv = SetPropertyAsACString(NS_LITERAL_STRING("binHDDModel"), hddModel);
|
||||||
|
NS_ENSURE_SUCCESS(rv, rv);
|
||||||
|
rv = SetPropertyAsACString(NS_LITERAL_STRING("binHDDRevision"),
|
||||||
|
hddRevision);
|
||||||
|
NS_ENSURE_SUCCESS(rv, rv);
|
||||||
|
}
|
||||||
|
if (NS_SUCCEEDED(GetHDDInfo(NS_WIN_WINDOWS_DIR, hddModel, hddRevision))) {
|
||||||
|
rv = SetPropertyAsACString(NS_LITERAL_STRING("winHDDModel"), hddModel);
|
||||||
|
NS_ENSURE_SUCCESS(rv, rv);
|
||||||
|
rv = SetPropertyAsACString(NS_LITERAL_STRING("winHDDRevision"),
|
||||||
|
hddRevision);
|
||||||
|
NS_ENSURE_SUCCESS(rv, rv);
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(MOZ_WIDGET_GTK)
|
#if defined(MOZ_WIDGET_GTK)
|
||||||
|
Loading…
Reference in New Issue
Block a user