mmserv/tms/tmscallserver/inc/tmscsdownlink.h
branchRCL_3
changeset 17 60e492b28869
parent 11 3570217d8c21
child 19 095bea5f582e
--- a/mmserv/tms/tmscallserver/inc/tmscsdownlink.h	Mon Jun 21 16:15:34 2010 +0300
+++ b/mmserv/tms/tmscallserver/inc/tmscsdownlink.h	Thu Jul 15 19:13:36 2010 +0300
@@ -23,26 +23,23 @@
 
 namespace TMS {
 
-//
-class TMSCSPDevSoundObserver;
-
 /**
- *  Provides Downlink functionality.
+ *  Provides Downlink stream functionality.
  *
  */
-NONSHARABLE_CLASS(TMSCSDownlink) : public TMSCSPDevSound
+NONSHARABLE_CLASS(TMSCSDownlink) : public TMSCSDevSound
     {
 public:
 
-    static TMSCSDownlink* NewL(TMSCSPDevSoundObserver& aObserver);
+    static TMSCSDownlink* NewL(TMSCSDevSoundObserver& observer);
 
     virtual ~TMSCSDownlink();
 
     /**
      * Sets volume.
-     * @param aVolume Volume.
+     * @param volume Volume.
      */
-    void SetVolume(gint aVolume);
+    void SetVolume(gint volume);
 
     /**
      * Gets volume.
@@ -60,30 +57,28 @@
 
     /**
      * From MDevSoundObserver.
-     * Indication from devsound that stream (Downlink) has been activated
+     * Indication from the devsound that Downlink has been activated
      * successfully.
      */
     void BufferToBeFilled(CMMFBuffer* /*aBuffer*/);
 
     /**
      * From MDevSoundObserver.
-     * Indication from devsound that activation of stream( Downlink)
-     * failed.
+     * Indication from devsound that Downlink activation has failed.
      */
     void PlayError(TInt aErrorCode);
 
 private:
 
     /**
-     * From CSPDevSound.
+     * From TMSCSDevSound.
      * Tries to activate the mic stream.
      */
     void DoActivateL();
 
 protected:
 
-    TMSCSDownlink(TMSCSPDevSoundObserver& aObserver);
-
+    TMSCSDownlink(TMSCSDevSoundObserver& observer);
     void ConstructL();
     };