author | William Roberts <williamr@symbian.org> |
Thu, 22 Jul 2010 16:33:45 +0100 | |
branch | GCC_SURGE |
changeset 37 | 451b2e1545b2 |
parent 14 | 63aabac4416d |
parent 28 | 075425b8d9a4 |
permissions | -rw-r--r-- |
24 | 1 |
/* |
2 |
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 |
* All rights reserved. |
|
4 |
* This component and the accompanying materials are made available |
|
5 |
* under the terms of "Eclipse Public License v1.0" |
|
6 |
* which accompanies this distribution, and is available |
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 |
* |
|
9 |
* Initial Contributors: |
|
10 |
* Nokia Corporation - initial contribution. |
|
11 |
* |
|
12 |
* Contributors: |
|
13 |
* |
|
14 |
* Description: |
|
15 |
* |
|
16 |
*/ |
|
17 |
||
18 |
// System includes |
|
19 |
#include <RemConCallHandlingTarget.h> |
|
20 |
#include <remconcoreapitarget.h> |
|
21 |
#include <remconinterfaceselector.h> |
|
22 |
||
23 |
// User includes |
|
24 |
#include "cradioenginelogger.h" |
|
25 |
#include "cradioremcontargetimp.h" |
|
26 |
#include "mradiocontroleventobserver.h" |
|
27 |
#include "radioengineutils.h" |
|
28 |
||
29 |
// Constants |
|
30 |
const TInt KVRVolumeTimerInitialDelay = 1000000; // Initial timer for headset volume up/down press event should expire immediately |
|
31 |
||
32 |
// ================= MEMBER FUNCTIONS ======================= |
|
33 |
||
34 |
// --------------------------------------------------------------------------- |
|
35 |
// |
|
36 |
// --------------------------------------------------------------------------- |
|
37 |
// |
|
38 |
CRadioRemConTargetImp::CRadioRemConTargetImp() |
|
39 |
{ |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
40 |
LEVEL3( LOG_METHOD_AUTO ); |
24 | 41 |
} |
42 |
||
43 |
// --------------------------------------------------------------------------- |
|
44 |
// |
|
45 |
// --------------------------------------------------------------------------- |
|
46 |
// |
|
47 |
void CRadioRemConTargetImp::ConstructL() |
|
48 |
{ |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
49 |
LEVEL3( LOG_METHOD_AUTO ); |
24 | 50 |
RadioEngineUtils::InitializeL(); |
51 |
// Create interface selector. |
|
52 |
iInterfaceSelector = CRemConInterfaceSelector::NewL(); |
|
53 |
// Create a new CRemConCoreApiTarget, owned by the interface selector. |
|
54 |
iCoreTarget = CRemConCoreApiTarget::NewL( *iInterfaceSelector, *this ); |
|
55 |
// Create a new CRemConCallHandlingTarget, owned by the interface selector. |
|
56 |
iCallTarget = CRemConCallHandlingTarget::NewL( *iInterfaceSelector, *this ); |
|
57 |
// Start being a target. |
|
58 |
iInterfaceSelector->OpenTargetL(); |
|
59 |
// Create repeat timer. |
|
60 |
iRepeatTimer = CPeriodic::NewL( CActive::EPriorityStandard ); |
|
61 |
} |
|
62 |
||
63 |
// --------------------------------------------------------------------------- |
|
64 |
// |
|
65 |
// --------------------------------------------------------------------------- |
|
66 |
// |
|
67 |
CRadioRemConTargetImp* CRadioRemConTargetImp::NewL() |
|
68 |
{ |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
69 |
LEVEL3( LOG_METHOD_AUTO ); |
24 | 70 |
CRadioRemConTargetImp* self = new ( ELeave ) CRadioRemConTargetImp(); |
71 |
CleanupStack::PushL( self ); |
|
72 |
self->ConstructL(); |
|
73 |
CleanupStack::Pop(); |
|
74 |
return self; |
|
75 |
} |
|
76 |
||
77 |
// --------------------------------------------------------------------------- |
|
78 |
// |
|
79 |
// --------------------------------------------------------------------------- |
|
80 |
// |
|
81 |
CRadioRemConTargetImp::~CRadioRemConTargetImp() |
|
82 |
{ |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
83 |
LEVEL3( LOG_METHOD_AUTO ); |
24 | 84 |
if ( iRepeatTimer ) |
85 |
{ |
|
86 |
iRepeatTimer->Cancel(); |
|
87 |
} |
|
88 |
delete iRepeatTimer; |
|
89 |
delete iInterfaceSelector; //deletes also iCallTarget and iCoreTarget |
|
90 |
iCoreTarget = NULL; |
|
91 |
iCallTarget = NULL; |
|
92 |
RadioEngineUtils::Release(); |
|
93 |
} |
|
94 |
||
95 |
// --------------------------------------------------------------------------- |
|
96 |
// |
|
97 |
// --------------------------------------------------------------------------- |
|
98 |
// |
|
99 |
void CRadioRemConTargetImp::SetControlEventObserver( MRadioControlEventObserver* aControlEventObserver ) |
|
100 |
{ |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
101 |
LEVEL3( LOG_METHOD_AUTO ); |
24 | 102 |
iObserver = aControlEventObserver; |
103 |
} |
|
104 |
||
105 |
// --------------------------------------------------------------------------- |
|
106 |
// |
|
107 |
// --------------------------------------------------------------------------- |
|
108 |
// |
|
109 |
void CRadioRemConTargetImp::MrccatoCommand( TRemConCoreApiOperationId aOperationId, |
|
110 |
TRemConCoreApiButtonAction aButtonAct ) |
|
111 |
{ |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
112 |
LOG_METHOD_AUTO; |
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
113 |
LOG_FORMAT( "aOperationId = %d, aButtonAct = %d", aOperationId, aButtonAct ); |
24 | 114 |
//TODO: Refactor |
115 |
if ( iObserver ) |
|
116 |
{ |
|
117 |
switch ( aOperationId ) |
|
118 |
{ |
|
119 |
case ERemConCoreApiChannelUp: |
|
120 |
{ |
|
121 |
if ( aButtonAct == ERemConCoreApiButtonClick ) |
|
122 |
{ |
|
123 |
TRAP_IGNORE( iObserver->ChannelUpL( ETrue ); iObserver->ChannelUpL( EFalse )); |
|
124 |
} |
|
125 |
else if ( aButtonAct == ERemConCoreApiButtonPress ) |
|
126 |
{ |
|
127 |
TRAP_IGNORE( iObserver->ChannelUpL( ETrue )); |
|
128 |
} |
|
129 |
else if ( aButtonAct == ERemConCoreApiButtonRelease ) |
|
130 |
{ |
|
131 |
TRAP_IGNORE( iObserver->ChannelUpL( EFalse )); |
|
132 |
} |
|
133 |
else {} |
|
134 |
break; |
|
135 |
} |
|
136 |
case ERemConCoreApiChannelDown: |
|
137 |
{ |
|
138 |
if ( aButtonAct == ERemConCoreApiButtonClick ) |
|
139 |
{ |
|
140 |
TRAP_IGNORE( iObserver->ChannelDownL( ETrue ); iObserver->ChannelDownL( EFalse )); |
|
141 |
} |
|
142 |
else if ( aButtonAct == ERemConCoreApiButtonPress ) |
|
143 |
{ |
|
144 |
TRAP_IGNORE( iObserver->ChannelDownL( ETrue )); |
|
145 |
} |
|
146 |
else if ( aButtonAct == ERemConCoreApiButtonRelease ) |
|
147 |
{ |
|
148 |
TRAP_IGNORE( iObserver->ChannelDownL( EFalse )); |
|
149 |
} |
|
150 |
else {} |
|
151 |
break; |
|
152 |
} |
|
153 |
case ERemConCoreApiVolumeUp: |
|
154 |
{ |
|
155 |
if ( aButtonAct == ERemConCoreApiButtonClick ) |
|
156 |
{ |
|
157 |
TRAP_IGNORE( iObserver->VolumeUpL( ETrue ); iObserver->VolumeUpL( EFalse )); |
|
158 |
} |
|
159 |
else if ( aButtonAct == ERemConCoreApiButtonPress ) |
|
160 |
{ |
|
161 |
iRepeatTimer->Cancel(); |
|
162 |
iRepeatId = ERemConCoreApiVolumeUp; |
|
163 |
iRepeatTimer->Start( KVRVolumeTimerInitialDelay, KVRVolumeTimerInitialDelay, TCallBack( RepeatTimerCallback, this )); |
|
164 |
TRAP_IGNORE( iObserver->VolumeUpL( ETrue ); iObserver->VolumeUpL( EFalse )); |
|
165 |
} |
|
166 |
else if ( aButtonAct == ERemConCoreApiButtonRelease ) |
|
167 |
{ |
|
168 |
iRepeatTimer->Cancel(); |
|
169 |
} |
|
170 |
else {} |
|
171 |
break; |
|
172 |
} |
|
173 |
case ERemConCoreApiVolumeDown: |
|
174 |
{ |
|
175 |
if ( aButtonAct == ERemConCoreApiButtonClick ) |
|
176 |
{ |
|
177 |
TRAP_IGNORE( iObserver->VolumeDownL( ETrue ); iObserver->VolumeDownL( EFalse )); |
|
178 |
} |
|
179 |
else if ( aButtonAct == ERemConCoreApiButtonPress ) |
|
180 |
{ |
|
181 |
iRepeatTimer->Cancel(); |
|
182 |
iRepeatId = ERemConCoreApiVolumeDown; |
|
183 |
iRepeatTimer->Start( KVRVolumeTimerInitialDelay, KVRVolumeTimerInitialDelay, TCallBack( RepeatTimerCallback, this )); |
|
184 |
TRAP_IGNORE( iObserver->VolumeDownL( ETrue ); iObserver->VolumeDownL( EFalse )); |
|
185 |
} |
|
186 |
else if ( aButtonAct == ERemConCoreApiButtonRelease ) |
|
187 |
{ |
|
188 |
iRepeatTimer->Cancel(); |
|
189 |
} |
|
190 |
else {} |
|
191 |
break; |
|
192 |
} |
|
193 |
case ERemConCoreApiStop: |
|
194 |
{ |
|
195 |
if ( aButtonAct == ERemConCoreApiButtonClick ) |
|
196 |
{ |
|
197 |
TRAP_IGNORE( iObserver->StopL( ETrue ); iObserver->StopL( EFalse )); |
|
198 |
} |
|
199 |
break; |
|
200 |
} |
|
201 |
case ERemConCoreApiBackward: |
|
202 |
{ |
|
203 |
if( aButtonAct == ERemConCoreApiButtonClick ) |
|
204 |
{ |
|
205 |
TRAP_IGNORE( iObserver->BackwardL( ETrue ); iObserver->BackwardL( EFalse )); |
|
206 |
} |
|
207 |
break; |
|
208 |
} |
|
209 |
case ERemConCoreApiRewind: |
|
210 |
{ |
|
211 |
if ( aButtonAct == ERemConCoreApiButtonPress ) |
|
212 |
{ |
|
213 |
LOG( "ERemConCoreApiRewind" ); |
|
214 |
TRAP_IGNORE( iObserver->RewindL( ETrue )); |
|
215 |
} |
|
216 |
else if ( aButtonAct == ERemConCoreApiButtonRelease ) |
|
217 |
{ |
|
218 |
TRAP_IGNORE( iObserver->RewindL( EFalse )); |
|
219 |
} |
|
220 |
else {} |
|
221 |
break; |
|
222 |
} |
|
223 |
case ERemConCoreApiForward: |
|
224 |
{ |
|
225 |
if( aButtonAct == ERemConCoreApiButtonClick ) |
|
226 |
{ |
|
227 |
TRAP_IGNORE( iObserver->ForwardL( ETrue ); iObserver->ForwardL( EFalse )); |
|
228 |
} |
|
229 |
break; |
|
230 |
} |
|
231 |
case ERemConCoreApiFastForward: |
|
232 |
{ |
|
233 |
if ( aButtonAct == ERemConCoreApiButtonPress ) |
|
234 |
{ |
|
235 |
LOG( "ERemConCoreApiFastForward" ); |
|
236 |
TRAP_IGNORE( iObserver->FastForwardL( ETrue )); |
|
237 |
} |
|
238 |
else if ( aButtonAct == ERemConCoreApiButtonRelease ) |
|
239 |
{ |
|
240 |
TRAP_IGNORE( iObserver->FastForwardL( EFalse )); |
|
241 |
} |
|
242 |
else {} |
|
243 |
break; |
|
244 |
} |
|
245 |
case ERemConCoreApiPlay: |
|
246 |
case ERemConCoreApiPause: |
|
247 |
case ERemConCoreApiPausePlayFunction: |
|
248 |
{ |
|
249 |
if ( aButtonAct == ERemConCoreApiButtonClick ) |
|
250 |
{ |
|
251 |
TRAP_IGNORE( iObserver->PausePlayL( ETrue ); iObserver->PausePlayL( EFalse )); |
|
252 |
} |
|
253 |
break; |
|
254 |
} |
|
255 |
default: |
|
256 |
{ |
|
257 |
break; |
|
258 |
} |
|
259 |
} |
|
260 |
} |
|
261 |
} |
|
262 |
||
263 |
// --------------------------------------------------------------------------- |
|
264 |
// |
|
265 |
// --------------------------------------------------------------------------- |
|
266 |
// |
|
267 |
void CRadioRemConTargetImp::MrccatoPlay( TRemConCoreApiPlaybackSpeed /*aSpeed*/, |
|
268 |
TRemConCoreApiButtonAction aButtonAct ) |
|
269 |
{ |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
270 |
LOG_METHOD_AUTO; |
24 | 271 |
if ( iObserver ) |
272 |
{ |
|
273 |
if ( aButtonAct == ERemConCoreApiButtonClick ) |
|
274 |
{ |
|
275 |
TRAP_IGNORE( iObserver->PlayL( ETrue ); iObserver->PlayL( EFalse )) |
|
276 |
} |
|
277 |
} |
|
278 |
} |
|
279 |
||
280 |
// --------------------------------------------------------------------------- |
|
281 |
// |
|
282 |
// --------------------------------------------------------------------------- |
|
283 |
// |
|
284 |
void CRadioRemConTargetImp::MrccatoTuneFunction( TBool /*aTwoPart*/, |
|
285 |
TUint /*aMajorChannel*/, |
|
286 |
TUint /*aMinorChannel*/, |
|
287 |
TRemConCoreApiButtonAction /*aButtonAct*/) |
|
288 |
{ |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
289 |
LEVEL3( LOG_METHOD_AUTO ); |
24 | 290 |
} |
291 |
||
292 |
// --------------------------------------------------------------------------- |
|
293 |
// |
|
294 |
// --------------------------------------------------------------------------- |
|
295 |
// |
|
296 |
void CRadioRemConTargetImp::MrccatoSelectDiskFunction( TUint /*aDisk*/, |
|
297 |
TRemConCoreApiButtonAction /*aButtonAct*/) |
|
298 |
{ |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
299 |
LEVEL3( LOG_METHOD_AUTO ); |
24 | 300 |
} |
301 |
||
302 |
// --------------------------------------------------------------------------- |
|
303 |
// |
|
304 |
// --------------------------------------------------------------------------- |
|
305 |
// |
|
306 |
void CRadioRemConTargetImp::MrccatoSelectAvInputFunction( TUint8 /*aAvInputSignalNumber*/, |
|
307 |
TRemConCoreApiButtonAction /*aButtonAct*/) |
|
308 |
{ |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
309 |
LEVEL3( LOG_METHOD_AUTO ); |
24 | 310 |
} |
311 |
||
312 |
// --------------------------------------------------------------------------- |
|
313 |
// |
|
314 |
// --------------------------------------------------------------------------- |
|
315 |
// |
|
316 |
void CRadioRemConTargetImp::MrccatoSelectAudioInputFunction( TUint8 /*aAudioInputSignalNumber*/, |
|
317 |
TRemConCoreApiButtonAction /*aButtonAct*/) |
|
318 |
{ |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
319 |
LEVEL3( LOG_METHOD_AUTO ); |
24 | 320 |
} |
321 |
||
322 |
// --------------------------------------------------------------------------- |
|
323 |
// |
|
324 |
// --------------------------------------------------------------------------- |
|
325 |
// |
|
326 |
TInt CRadioRemConTargetImp::RepeatTimerCallback( TAny* aPtr ) |
|
327 |
{ |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
328 |
LEVEL3( LOG_METHOD_AUTO ); |
24 | 329 |
|
330 |
CRadioRemConTargetImp* self = reinterpret_cast<CRadioRemConTargetImp*>( aPtr ); |
|
331 |
||
332 |
if ( self ) |
|
333 |
{ |
|
334 |
if ( self->iObserver ) |
|
335 |
{ |
|
336 |
switch ( self->iRepeatId ) |
|
337 |
{ |
|
338 |
case ERemConCoreApiVolumeUp: |
|
339 |
{ |
|
340 |
TRAP_IGNORE( self->iObserver->VolumeUpL( ETrue ); self->iObserver->VolumeUpL( EFalse )) |
|
341 |
break; |
|
342 |
} |
|
343 |
case ERemConCoreApiVolumeDown: |
|
344 |
{ |
|
345 |
TRAP_IGNORE( self->iObserver->VolumeDownL( ETrue ); self->iObserver->VolumeDownL( EFalse )) |
|
346 |
break; |
|
347 |
} |
|
348 |
default: |
|
349 |
{ |
|
350 |
break; |
|
351 |
} |
|
352 |
} |
|
353 |
} |
|
354 |
} |
|
355 |
||
356 |
return KErrNone; |
|
357 |
} |
|
358 |
||
359 |
// --------------------------------------------------------------------------- |
|
360 |
// |
|
361 |
// --------------------------------------------------------------------------- |
|
362 |
// |
|
363 |
void CRadioRemConTargetImp::AnswerCall() |
|
364 |
{ |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
365 |
LEVEL3( LOG_METHOD_AUTO ); |
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
366 |
LOG( "This function currently unsupported." ); |
24 | 367 |
} |
368 |
||
369 |
// --------------------------------------------------------------------------- |
|
370 |
// |
|
371 |
// --------------------------------------------------------------------------- |
|
372 |
// |
|
373 |
void CRadioRemConTargetImp::AnswerEndCall() |
|
374 |
{ |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
375 |
LEVEL3( LOG_METHOD_AUTO ); |
24 | 376 |
if ( iObserver ) |
377 |
{ |
|
378 |
TRAP_IGNORE( iObserver->AnswerEndCallL()) |
|
379 |
} |
|
380 |
} |
|
381 |
||
382 |
// --------------------------------------------------------------------------- |
|
383 |
// |
|
384 |
// --------------------------------------------------------------------------- |
|
385 |
// |
|
386 |
void CRadioRemConTargetImp::DialCall( const TDesC8& /*aTelNumber*/ ) |
|
387 |
{ |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
388 |
LEVEL3( LOG_METHOD_AUTO ); |
24 | 389 |
} |
390 |
||
391 |
// --------------------------------------------------------------------------- |
|
392 |
// |
|
393 |
// --------------------------------------------------------------------------- |
|
394 |
// |
|
395 |
void CRadioRemConTargetImp::EndCall() |
|
396 |
{ |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
397 |
LEVEL3( LOG_METHOD_AUTO ); |
24 | 398 |
} |
399 |
||
400 |
// --------------------------------------------------------------------------- |
|
401 |
// |
|
402 |
// --------------------------------------------------------------------------- |
|
403 |
// |
|
404 |
void CRadioRemConTargetImp::GenerateDTMF( const TChar /*aChar*/ ) |
|
405 |
{ |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
406 |
LEVEL3( LOG_METHOD_AUTO ); |
24 | 407 |
} |
408 |
||
409 |
// --------------------------------------------------------------------------- |
|
410 |
// |
|
411 |
// --------------------------------------------------------------------------- |
|
412 |
// |
|
413 |
void CRadioRemConTargetImp::LastNumberRedial() |
|
414 |
{ |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
415 |
LEVEL3( LOG_METHOD_AUTO ); |
24 | 416 |
} |
417 |
||
418 |
// --------------------------------------------------------------------------- |
|
419 |
// |
|
420 |
// --------------------------------------------------------------------------- |
|
421 |
// |
|
422 |
void CRadioRemConTargetImp::MultipartyCalling( const TDesC8& /*aData*/ ) |
|
423 |
{ |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
424 |
LEVEL3( LOG_METHOD_AUTO ); |
24 | 425 |
} |
426 |
||
427 |
// --------------------------------------------------------------------------- |
|
428 |
// |
|
429 |
// --------------------------------------------------------------------------- |
|
430 |
// |
|
431 |
void CRadioRemConTargetImp::SpeedDial( const TInt /*aIndex*/ ) |
|
432 |
{ |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
433 |
LEVEL3( LOG_METHOD_AUTO ); |
24 | 434 |
} |
435 |
||
436 |
// --------------------------------------------------------------------------- |
|
437 |
// |
|
438 |
// --------------------------------------------------------------------------- |
|
439 |
// |
|
440 |
void CRadioRemConTargetImp::VoiceDial( const TBool /*aActivate*/ ) |
|
441 |
{ |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
442 |
LEVEL3( LOG_METHOD_AUTO ); |
24 | 443 |
} |