summaryrefslogtreecommitdiff
path: root/xpcom/base/nsMacUtilsImpl.h
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2021-05-03 11:35:41 +0000
committerMoonchild <moonchild@palemoon.org>2021-05-03 11:35:41 +0000
commit1bf0734a7249eb0dc1a96d825e7310eb46cac6dc (patch)
tree1f941b9822dabf5301601c83b3ac8ab91d8a622e /xpcom/base/nsMacUtilsImpl.h
parentb1eb04d3f0fde242edb8e9b8b11d00539ceeade7 (diff)
downloaduxp-1bf0734a7249eb0dc1a96d825e7310eb46cac6dc.tar.gz
Issue #1751 -- Remove XP_MACOSX conditionals and support files from /xpcom
Diffstat (limited to 'xpcom/base/nsMacUtilsImpl.h')
-rw-r--r--xpcom/base/nsMacUtilsImpl.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/xpcom/base/nsMacUtilsImpl.h b/xpcom/base/nsMacUtilsImpl.h
deleted file mode 100644
index 12a1add41a..0000000000
--- a/xpcom/base/nsMacUtilsImpl.h
+++ /dev/null
@@ -1,41 +0,0 @@
-/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
-/* 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/. */
-
-#ifndef nsMacUtilsImpl_h___
-#define nsMacUtilsImpl_h___
-
-#include "nsIMacUtils.h"
-#include "nsString.h"
-#include "mozilla/Attributes.h"
-
-class nsMacUtilsImpl final : public nsIMacUtils
-{
-public:
- NS_DECL_ISUPPORTS
- NS_DECL_NSIMACUTILS
-
- nsMacUtilsImpl()
- {
- }
-
-private:
- ~nsMacUtilsImpl()
- {
- }
-
- nsresult GetArchString(nsAString& aArchString);
-
- // A string containing a "-" delimited list of architectures
- // in our binary.
- nsString mBinaryArchs;
-};
-
-// Global singleton service
-// 697BD3FD-43E5-41CE-AD5E-C339175C0818
-#define NS_MACUTILSIMPL_CID \
- {0x697BD3FD, 0x43E5, 0x41CE, {0xAD, 0x5E, 0xC3, 0x39, 0x17, 0x5C, 0x08, 0x18}}
-#define NS_MACUTILSIMPL_CONTRACTID "@mozilla.org/xpcom/mac-utils;1"
-
-#endif /* nsMacUtilsImpl_h___ */