338 void CF32AgentManager::PrepareHTTPRequestHeaders(RStringPool& /*aStringPool*/, RHTTPHeaders& /*aRequestHeaders*/) const |
338 void CF32AgentManager::PrepareHTTPRequestHeaders(RStringPool& /*aStringPool*/, RHTTPHeaders& /*aRequestHeaders*/) const |
339 { |
339 { |
340 User::Panic(KCafPanicString, ECafPanicF32AgentPrepareHTTPHeadersNotSupported); |
340 User::Panic(KCafPanicString, ECafPanicF32AgentPrepareHTTPHeadersNotSupported); |
341 } |
341 } |
342 |
342 |
|
343 #ifdef SYMBIAN_ENABLE_SDP_WMDRM_SUPPORT |
|
344 |
|
345 TBool CF32AgentManager::IsRecognizedL(const TDesC8& /*aHeaderData*/) const |
|
346 { |
|
347 // F32 should be the default agent and should never be called here |
|
348 return EFalse; |
|
349 } |
|
350 |
|
351 TBool CF32AgentManager::RecognizeContentL(const TDesC8&, TDes8&, TDes8&) const |
|
352 { |
|
353 // F32 should be the default agent and should never be called here |
|
354 return EFalse; |
|
355 } |
|
356 |
|
357 TInt CF32AgentManager::GetAttribute(const TDesC8& aHeaderData, TInt aAttribute, TInt& aValue) |
|
358 { |
|
359 return TF32DefaultAttributes::GetAttribute(aHeaderData, aAttribute, aValue); |
|
360 } |
|
361 |
|
362 TInt CF32AgentManager::GetAttributeSet(const TDesC8& aHeaderData, RAttributeSet& aAttributeSet) |
|
363 { |
|
364 return TF32DefaultAttributes::GetAttributeSet(aHeaderData, aAttributeSet); |
|
365 } |
|
366 |
|
367 TInt CF32AgentManager::GetStringAttribute(const TDesC8& aHeaderData, TInt aAttribute, TDes& aValue) |
|
368 { |
|
369 return TF32DefaultAttributes::GetStringAttribute(aHeaderData, aAttribute, aValue); |
|
370 } |
|
371 |
|
372 TInt CF32AgentManager::GetStringAttributeSet(const TDesC8& aHeaderData, RStringAttributeSet& aAttributeSet) |
|
373 { |
|
374 return TF32DefaultAttributes::GetStringAttributeSet(aHeaderData, aAttributeSet); |
|
375 } |
|
376 |
|
377 #endif //SYMBIAN_ENABLE_SDP_WMDRM_SUPPORT |