equal
deleted
inserted
replaced
23 #include "sbedataowner.h" |
23 #include "sbedataowner.h" |
24 #include "abserver.h" |
24 #include "abserver.h" |
25 #include "sbtypes.h" |
25 #include "sbtypes.h" |
26 #include "sblog.h" |
26 #include "sblog.h" |
27 #include "sbeparserdefs.h" |
27 #include "sbeparserdefs.h" |
28 #include <connect/panic.h> |
28 #include "sbepanic.h" |
29 |
29 |
30 namespace conn |
30 namespace conn |
31 { |
31 { |
32 _LIT(KDrive, "?:"); |
32 _LIT(KDrive, "?:"); |
33 _LIT(KDriveAndSlash, "?:\\"); |
33 _LIT(KDriveAndSlash, "?:\\"); |
3551 { |
3551 { |
3552 __LOG1("CDataOwner::HandleActiveBackup(0x%08x) - iActiveInformation.iActiveType: EProxyImpOnly", iSecureId.iId); |
3552 __LOG1("CDataOwner::HandleActiveBackup(0x%08x) - iActiveInformation.iActiveType: EProxyImpOnly", iSecureId.iId); |
3553 iActiveInformation.iActiveType = EProxyImpOnly; |
3553 iActiveInformation.iActiveType = EProxyImpOnly; |
3554 } |
3554 } |
3555 } |
3555 } |
|
3556 else if(!localName.CompareF(KCallbackDelayTime)) |
|
3557 { |
|
3558 const TDesC8& value = aAttributes[x].Value().DesC(); |
|
3559 TInt timeValue = 0; |
|
3560 TLex8 lex(value); |
|
3561 TInt err = lex.Val(timeValue); |
|
3562 if( err == KErrNone && timeValue > 0) |
|
3563 iActiveInformation.iCallbackDelayTime = TTimeIntervalMicroSeconds32(timeValue); |
|
3564 else |
|
3565 iActiveInformation.iCallbackDelayTime = KABCallbackDefaultTimeout; |
|
3566 } |
3556 } // for x |
3567 } // for x |
3557 |
3568 |
3558 return KErrNone; |
3569 return KErrNone; |
3559 } |
3570 } |
3560 |
3571 |