equal
deleted
inserted
replaced
31 class CPodcastModel; |
31 class CPodcastModel; |
32 |
32 |
33 class MConnectionObserver |
33 class MConnectionObserver |
34 { |
34 { |
35 public: |
35 public: |
|
36 virtual void ConnectionSelectionStart() = 0; |
|
37 virtual void ConnectionSelectionEnd() = 0; |
36 virtual void ConnectCompleteL(TInt aErrorCode) = 0; |
38 virtual void ConnectCompleteL(TInt aErrorCode) = 0; |
37 virtual void Disconnected() = 0; |
39 virtual void Disconnected() = 0; |
38 }; |
40 }; |
39 |
41 |
40 /** |
42 /** |
87 protected: |
89 protected: |
88 // UI Setting |
90 // UI Setting |
89 TBool ConnectionSettingL(); |
91 TBool ConnectionSettingL(); |
90 |
92 |
91 void ReportConnection(TInt aError); |
93 void ReportConnection(TInt aError); |
|
94 void ReportConnectionSelectionStart(); |
|
95 void ReportConnectionSelectionEnd(); |
|
96 |
92 private: |
97 private: |
93 RConnection iConnection; |
98 RConnection iConnection; |
94 RSocketServ iSocketServer; |
99 RSocketServ iSocketServer; |
95 // Connect using mobility extension |
100 // Connect using mobility extension |
96 CActiveCommsMobilityApiExt* iMobility; |
101 CActiveCommsMobilityApiExt* iMobility; |