browserutilities/schemehandler/SchemeDispatcher/src/RtspHandler.cpp
branchRCL_3
changeset 93 79859ed3eea9
parent 64 ac77f89b1d9e
child 94 919f36ff910f
--- a/browserutilities/schemehandler/SchemeDispatcher/src/RtspHandler.cpp	Thu Aug 19 10:58:56 2010 +0300
+++ b/browserutilities/schemehandler/SchemeDispatcher/src/RtspHandler.cpp	Tue Aug 31 16:17:46 2010 +0300
@@ -17,8 +17,9 @@
 *
 */
 
+
 // INCLUDE FILES
- 
+
 #include "RtspHandler.h"
 #include "SchemeDispLogger.h"
 #include <ecom/ecom.h>		// For REComSession
@@ -31,13 +32,9 @@
 #include <f32file.h>
 #include <AknLaunchAppService.h>
 
-#ifdef __S60_32__
-LOCAL_C const TUid KUidMediaPlayer = { 0x10005A3E };
-#else
-#include <videoplayeruid.hrh>
-#endif
 // ================= CONSTANTS =======================
 
+LOCAL_C const TUid KUidMediaPlayer = { 0x10005A3E };
 _LIT( KRtspFileName, "c:\\system\\temp\\RtspTemp.ram" );
 
 // ================= MEMBER FUNCTIONS =======================
@@ -197,11 +194,8 @@
 	User::LeaveIfError( appArcSession.Connect() );
 	TThreadId id;
 
-#ifdef __S60_32__
-    appArcSession.StartDocument( iParsedUrl->Des(), KUidMediaPlayer , id );
-#else
-    appArcSession.StartDocument( iParsedUrl->Des(), TUid::Uid(KVideoPlayerUID) , id );
-#endif
+	appArcSession.StartDocument( iParsedUrl->Des(), KUidMediaPlayer , id );
+
 	appArcSession.Close();
 
 	CLOG_LEAVEFN( "CRtspHandler::HandleUrlStandaloneL()" );
@@ -231,4 +225,3 @@
 	CLOG_LEAVEFN( "CRtspHandler::HandleServerAppExit" );	
 	}
 
-