michael@0: /* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */ michael@0: /* vim: set ts=2 et sw=2 tw=40: */ michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #ifndef mozilla_dom_telephony_telephonycommon_h__ michael@0: #define mozilla_dom_telephony_telephonycommon_h__ michael@0: michael@0: #include "mozilla/Attributes.h" michael@0: #include "mozilla/DOMEventTargetHelper.h" michael@0: #include "mozilla/ErrorResult.h" michael@0: #include "nsAutoPtr.h" michael@0: #include "nsCOMPtr.h" michael@0: #include "nsCycleCollectionParticipant.h" michael@0: #include "nsDebug.h" michael@0: #include "nsString.h" michael@0: #include "nsTArray.h" michael@0: michael@0: #define BEGIN_TELEPHONY_NAMESPACE \ michael@0: namespace mozilla { namespace dom { namespace telephony { michael@0: #define END_TELEPHONY_NAMESPACE \ michael@0: } /* namespace telephony */ } /* namespace dom */ } /* namespace mozilla */ michael@0: #define USING_TELEPHONY_NAMESPACE \ michael@0: using namespace mozilla::dom::telephony; michael@0: michael@0: namespace mozilla { michael@0: namespace dom { michael@0: michael@0: namespace telephony { michael@0: michael@0: enum { michael@0: kOutgoingPlaceholderCallIndex = UINT32_MAX michael@0: }; michael@0: michael@0: } // namespace telephony michael@0: michael@0: class CallsList; michael@0: class Telephony; michael@0: class TelephonyCall; michael@0: class TelephonyCallGroup; michael@0: michael@0: } // namespace dom michael@0: } // namespace mozilla michael@0: michael@0: #endif // mozilla_dom_telephony_telephonycommon_h__