diff -r 50c53e893c3f -r 1221b68b8a5f wmdrm/camese/wmdrmdlaapp/src/wmdrmdlaappservicesession.cpp --- a/wmdrm/camese/wmdrmdlaapp/src/wmdrmdlaappservicesession.cpp Thu Aug 19 10:12:10 2010 +0300 +++ b/wmdrm/camese/wmdrmdlaapp/src/wmdrmdlaappservicesession.cpp Tue Aug 31 15:29:38 2010 +0300 @@ -1,5 +1,5 @@ /* -* Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies). +* Copyright (c) 2008-2010 Nokia Corporation and/or its subsidiary(-ies). * All rights reserved. * This component and the accompanying materials are made available * under the terms of "Eclipse Public License v1.0" @@ -121,8 +121,6 @@ } aMessage.ReadL( 0, iapPckg ); - BrowserView()->SetIAP( iap ); - CompleteMessage( aMessage, KErrNone ); } @@ -159,12 +157,6 @@ ptr8.Set( postContentBoundary->Des() ); aMessage.ReadL( 3, ptr8 ); - BrowserView()->PostL( this, - *postUrl, - *postContentType, - *postData, - *postContentBoundary ); - CleanupStack::PopAndDestroy( 4, postUrl ); //postContentBoundary, postData, //postContentType, postUrl @@ -187,16 +179,7 @@ { TInt err( KErrNone ); - HBufC8* licenseResponse( BrowserView()->LicenseResponse() ); - if ( licenseResponse ) - { - TInt licenseSize( licenseResponse->Size() ); - aMessage.WriteL( 0, TPckg( licenseSize ) ); - } - else - { err = KErrArgument; - } CompleteMessage( aMessage, err ); } @@ -209,16 +192,8 @@ { TInt err( KErrNone ); - HBufC8* licenseResponse( BrowserView()->LicenseResponse() ); - if ( licenseResponse ) - { - aMessage.WriteL( 0, *licenseResponse ); - } - else - { err = KErrArgument; - } - + CompleteMessage( aMessage, err ); }