diff -r e16d72588c28 -r 8a03a285ab14 wmdrm/camese/wmdrmdlaapp/src/wmdrmdlabrowserview.cpp --- a/wmdrm/camese/wmdrmdlaapp/src/wmdrmdlabrowserview.cpp Fri Mar 12 15:43:46 2010 +0200 +++ b/wmdrm/camese/wmdrmdlaapp/src/wmdrmdlabrowserview.cpp Mon Mar 15 12:41:43 2010 +0200 @@ -19,7 +19,7 @@ // INCLUDE FILES #include #include -#include +#include #include #include #include @@ -112,10 +112,10 @@ const TDesC8& aPostContentBoundary ) { iCallback = aCallback; - iContainer->BrCtlInterface()->PostUrlL( aPostUrl, - aPostContentType, - aPostData, - &aPostContentBoundary, + iContainer->BrCtlInterface()->PostUrlL( aPostUrl, + aPostContentType, + aPostData, + &aPostContentBoundary, (TAny*)iContainer ); iContainer->BrCtlInterface()->SetFocus( ETrue, EDrawNow ); } @@ -146,9 +146,9 @@ void CWmDrmDlaBrowserView::HandleCommandL( TInt aCommand ) { - if ( aCommand >= TBrCtlDefs::ECommandIdBase + + if ( aCommand >= TBrCtlDefs::ECommandIdBase + TBrCtlDefs::ECommandIdWMLBase && - aCommand <= TBrCtlDefs::ECommandIdBase + + aCommand <= TBrCtlDefs::ECommandIdBase + TBrCtlDefs::ECommandIdRange ) { BrCtlHandleCommandL( aCommand ); @@ -167,7 +167,7 @@ const TVwsViewId& /*aPrevViewId*/, TUid /*aCustomMessageId*/, const TDesC8& /*aCustomMessage*/ ) - { + { CreateContainerL(); AppUi()->AddToStackL( *this, iContainer ); HandleClientRectChange(); @@ -202,7 +202,7 @@ { RemoveContainer(); iContainer = CWmDrmDlaBrowserContainer::NewL( this, this ); - iContainer->SetMopParent( this ); + iContainer->SetMopParent( this ); } // --------------------------------------------------------------------------- @@ -232,10 +232,10 @@ // CWmDrmDlaBrowserView::NetworkConnectionNeededL // --------------------------------------------------------------------------- // -void CWmDrmDlaBrowserView::NetworkConnectionNeededL( - TInt* aConnectionPtr, - TInt* aSockSvrHandle, - TBool* aNewConn, +void CWmDrmDlaBrowserView::NetworkConnectionNeededL( + TInt* aConnectionPtr, + TInt* aSockSvrHandle, + TBool* aNewConn, TApBearerType* aBearerType ) { TInt ret( 0 ); @@ -245,7 +245,7 @@ iConMgr->SetRequestedAP( iIap ); ret = iConMgr->StartConnectionL( ETrue ); } - + // If connected, return needed info to framework if ( !ret ) { @@ -254,7 +254,7 @@ *aNewConn = EFalse; *aBearerType = EApBearerTypeAllBearers; } - else + else { User::Leave( KErrCancel ); } @@ -264,8 +264,8 @@ // CWmDrmDlaBrowserView::HandleRequestL // --------------------------------------------------------------------------- // -TBool CWmDrmDlaBrowserView::HandleRequestL( - RArray* /*aTypeArray*/, +TBool CWmDrmDlaBrowserView::HandleRequestL( + RArray* /*aTypeArray*/, CDesCArrayFlat* /*aDesArray*/ ) { return EFalse; @@ -275,16 +275,16 @@ // CWmDrmDlaBrowserView::HandleDownloadL // --------------------------------------------------------------------------- // -TBool CWmDrmDlaBrowserView::HandleDownloadL( - RArray* aTypeArray, +TBool CWmDrmDlaBrowserView::HandleDownloadL( + RArray* aTypeArray, CDesCArrayFlat* aDesArray ) { //Check that content type and local file name exists - //There must be both, because download manager downloads POST-content + //There must be both, because download manager downloads POST-content //in advance calling this function - TInt contentTypeIndex( aTypeArray->Find( EParamReceivedContentType ) ); + TInt contentTypeIndex( aTypeArray->Find( EParamReceivedContentType ) ); TInt fileNameIndex( aTypeArray->Find( EParamLocalFileName ) ); - if ( contentTypeIndex != KErrNotFound && + if ( contentTypeIndex != KErrNotFound && fileNameIndex != KErrNotFound && contentTypeIndex < aDesArray->Count() && fileNameIndex < aDesArray->Count() ) @@ -294,7 +294,7 @@ if ( dataTypePtr.CompareF( KDataTypeLicenseResponse ) == 0 ) { //Get the path to the license response, - //read the response, delete the file and + //read the response, delete the file and //make a license received - callback TPtrC16 filePathPtr( (*aDesArray)[fileNameIndex] ); RFs fs;