videoplayerapp/videoplayerengine/tsrc/testvideoplayerengine/stub/src/videoserviceurifetch.cpp
changeset 36 8aed59de29f9
parent 30 4f111d64a341
child 66 adb51f74b890
equal deleted inserted replaced
35:3738fe97f027 36:8aed59de29f9
     9 * Initial Contributors:
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    10 * Nokia Corporation - initial contribution.
    11 *
    11 *
    12 * Contributors:
    12 * Contributors:
    13 *
    13 *
    14 * Description:   ?Description
    14 * Description:   Implementation of VideoServiceUriFetch Stub
    15 *
    15 *
    16 */
    16 */
    17 
    17 
    18 #include <videoservices.h>
    18 // Version : %version: %
    19 #include <videoserviceurifetch.h>
    19 
       
    20 #include "videoservices.h"
       
    21 #include "videoserviceurifetch.h"
       
    22 #include "mpxvideo_debug.h"
    20 
    23 
    21 
    24 
    22 // ----------------------------------------------------------------------------
    25 // ----------------------------------------------------------------------------
    23 // VideoServiceUriFetch()
    26 // VideoServiceUriFetch()
    24 // ----------------------------------------------------------------------------
    27 // ----------------------------------------------------------------------------
    25 //
    28 //
    26 VideoServiceUriFetch::VideoServiceUriFetch(VideoServices* parent)
    29 VideoServiceUriFetch::VideoServiceUriFetch( VideoServices* parent )
    27 {
    30 {
       
    31     MPX_DEBUG(_L("VideoServiceUriFetch::VideoServiceUriFetch()"));
    28 	mServiceApp = parent;
    32 	mServiceApp = parent;
    29 }
    33 }
    30 
    34 
    31 // ----------------------------------------------------------------------------
    35 // ----------------------------------------------------------------------------
    32 // ~VideoServiceUriFetch()
    36 // ~VideoServiceUriFetch()
    33 // ----------------------------------------------------------------------------
    37 // ----------------------------------------------------------------------------
    34 //
    38 //
    35 VideoServiceUriFetch::~VideoServiceUriFetch()
    39 VideoServiceUriFetch::~VideoServiceUriFetch()
    36 {
    40 {
    37 
    41     MPX_DEBUG(_L("VideoServiceUriFetch::~VideoServiceUriFetch()"));
    38 }
    42 }
    39 
    43 
    40 // ----------------------------------------------------------------------------
    44 // ----------------------------------------------------------------------------
    41 // fetch()
    45 // fetch()
    42 // ----------------------------------------------------------------------------
    46 // ----------------------------------------------------------------------------
    43 //
    47 //
    44 void VideoServiceUriFetch::fetch(const QString& title)
    48 void VideoServiceUriFetch::fetch( const QString& title )
    45 {
    49 {
    46     mServiceApp->setCurrentService(VideoServices::EUriFetcher);
    50     MPX_DEBUG(_L("VideoServiceUriFetch::fetch()"));
       
    51 
       
    52     Q_UNUSED( title );    
       
    53     mServiceApp->setCurrentService( VideoServices::EUriFetcher );
    47 }
    54 }