gecko-dev/dom/telephony/ipc/TelephonyChild.h

96 строки
2.8 KiB
C
Исходник Обычный вид История

2013-09-07 10:19:53 +04:00
/* -*- Mode: C++; tab-width: 2; 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 mozilla_dom_telephony_TelephonyChild_h
#define mozilla_dom_telephony_TelephonyChild_h
#include "mozilla/dom/telephony/TelephonyCommon.h"
#include "mozilla/dom/telephony/PTelephonyChild.h"
#include "mozilla/dom/telephony/PTelephonyRequestChild.h"
#include "nsITelephonyProvider.h"
BEGIN_TELEPHONY_NAMESPACE
class TelephonyIPCProvider;
2013-09-07 10:19:53 +04:00
class TelephonyChild : public PTelephonyChild
{
public:
TelephonyChild(TelephonyIPCProvider* aProvider);
2013-09-07 10:19:53 +04:00
protected:
virtual ~TelephonyChild();
2013-09-07 10:19:53 +04:00
virtual void
ActorDestroy(ActorDestroyReason aWhy) MOZ_OVERRIDE;
virtual PTelephonyRequestChild*
AllocPTelephonyRequestChild(const IPCTelephonyRequest& aRequest) MOZ_OVERRIDE;
2013-09-07 10:19:53 +04:00
virtual bool
DeallocPTelephonyRequestChild(PTelephonyRequestChild* aActor) MOZ_OVERRIDE;
virtual bool
RecvNotifyCallError(const uint32_t& aClientId, const int32_t& aCallIndex,
2013-09-07 10:19:53 +04:00
const nsString& aError) MOZ_OVERRIDE;
virtual bool
RecvNotifyCallStateChanged(const uint32_t& aClientId,
const IPCCallStateData& aData) MOZ_OVERRIDE;
2013-09-07 10:19:53 +04:00
virtual bool
RecvNotifyCdmaCallWaiting(const uint32_t& aClientId,
const nsString& aNumber) MOZ_OVERRIDE;
2013-09-07 10:19:53 +04:00
virtual bool
RecvNotifyConferenceCallStateChanged(const uint16_t& aCallState) MOZ_OVERRIDE;
virtual bool
RecvNotifyConferenceError(const nsString& aName,
const nsString& aMessage) MOZ_OVERRIDE;
2013-09-07 10:19:53 +04:00
virtual bool
RecvNotifySupplementaryService(const uint32_t& aClientId,
const int32_t& aCallIndex,
2013-09-07 10:19:53 +04:00
const uint16_t& aNotification) MOZ_OVERRIDE;
private:
nsRefPtr<TelephonyIPCProvider> mProvider;
2013-09-07 10:19:53 +04:00
};
class TelephonyRequestChild : public PTelephonyRequestChild
{
public:
TelephonyRequestChild(nsITelephonyListener* aListener,
nsITelephonyCallback* aCallback);
2013-09-07 10:19:53 +04:00
protected:
virtual ~TelephonyRequestChild() {}
virtual void
ActorDestroy(ActorDestroyReason aWhy) MOZ_OVERRIDE;
virtual bool
Recv__delete__(const IPCTelephonyResponse& aResponse) MOZ_OVERRIDE;
2013-09-07 10:19:53 +04:00
virtual bool
RecvNotifyEnumerateCallState(const uint32_t& aClientId,
const IPCCallStateData& aData) MOZ_OVERRIDE;
2013-09-07 10:19:53 +04:00
virtual bool
RecvNotifyDialError(const nsString& aError) MOZ_OVERRIDE;
virtual bool
RecvNotifyDialSuccess(const uint32_t& aCallIndex) MOZ_OVERRIDE;
2013-09-07 10:19:53 +04:00
private:
nsCOMPtr<nsITelephonyListener> mListener;
nsCOMPtr<nsITelephonyCallback> mCallback;
2013-09-07 10:19:53 +04:00
};
END_TELEPHONY_NAMESPACE
#endif // mozilla_dom_telephony_TelephonyChild_h