2006-07-06 06:32:03 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 50; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2000-01-27 09:40:17 +00:00
|
|
|
|
2006-07-06 06:32:03 +00:00
|
|
|
#ifndef _NSSYSTEMINFO_H_
|
|
|
|
#define _NSSYSTEMINFO_H_
|
2000-01-27 09:40:17 +00:00
|
|
|
|
2006-07-06 06:32:03 +00:00
|
|
|
#include "nsHashPropertyBag.h"
|
2000-01-27 09:40:17 +00:00
|
|
|
|
2006-07-06 06:32:03 +00:00
|
|
|
class nsSystemInfo : public nsHashPropertyBag {
|
|
|
|
public:
|
|
|
|
nsSystemInfo();
|
2000-01-27 09:40:17 +00:00
|
|
|
|
2006-07-06 06:32:03 +00:00
|
|
|
nsresult Init();
|
2000-01-27 09:40:17 +00:00
|
|
|
|
2009-11-04 14:41:37 +00:00
|
|
|
protected:
|
|
|
|
void SetInt32Property(const nsAString &aPropertyName,
|
2012-08-22 15:56:38 +00:00
|
|
|
const int32_t aValue);
|
2009-11-04 14:41:37 +00:00
|
|
|
void SetUint64Property(const nsAString &aPropertyName,
|
2012-08-22 15:56:38 +00:00
|
|
|
const uint64_t aValue);
|
2009-11-04 14:41:37 +00:00
|
|
|
|
2006-07-06 06:32:03 +00:00
|
|
|
private:
|
|
|
|
~nsSystemInfo();
|
2000-01-27 09:40:17 +00:00
|
|
|
};
|
|
|
|
|
2006-07-06 06:32:03 +00:00
|
|
|
#define NS_SYSTEMINFO_CONTRACTID "@mozilla.org/system-info;1"
|
|
|
|
#define NS_SYSTEMINFO_CLASSNAME "System Info Service"
|
|
|
|
#define NS_SYSTEMINFO_CID \
|
|
|
|
{ 0xd962398a, 0x99e5, 0x49b2, \
|
|
|
|
{ 0x85, 0x7a, 0xc1, 0x59, 0x04, 0x9c, 0x7f, 0x6c } }
|
|
|
|
|
|
|
|
#endif /* _NSSYSTEMINFO_H_ */
|