webengine/osswebengine/WebKit/s60/plugins/PluginStreamLoaderClient.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 02 Feb 2010 00:56:45 +0200
changeset 28 d39add9822e2
parent 25 0ed94ceaa377
child 48 79859ed3eea9
permissions -rw-r--r--
Revision: 201003 Kit: 201005

/*
* Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:  Loads the plugin content
*
*//*
* Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:  
*
*/

#ifndef __PLUGINLOADER_H__
#define __PLUGINLOADER_H__

#include <wtf/RefPtr.h>

class PluginSkin;
class PluginStream;

namespace WebCore {

class Frame;
class String;
class ResourceError;
struct ResourceRequest;
class ResourceResponse;  
class NetscapePlugInStreamLoader;

class NetscapePlugInStreamLoaderClient
{

public:
    static NetscapePlugInStreamLoaderClient* NewL(const String& url, PluginSkin* pluginskin, Frame* frame, void* notifydata = 0, TBool notify = EFalse);
    static NetscapePlugInStreamLoaderClient* NewL(const ResourceRequest& request, PluginSkin* pluginskin, Frame* frame, void* notifydata=0, TBool notify = EFalse);
    virtual ~NetscapePlugInStreamLoaderClient();             
    
    void start();    
    void stop();
    void cancelWithError(const ResourceError& error);

public:
    void didReceiveResponse(const ResourceResponse&);
    void didReceiveData(const char*, int, long long);
    void didFinishLoading();
    void didFail(const ResourceError& error);
    void didCancel(const ResourceError& error);
    TBool notify() { return m_notify; }
    
private:
    void ConstructL(const String& url, PluginSkin* pluginskin, Frame* frame, void* notifydata = 0, TBool notify = EFalse);
    void ConstructL(const ResourceRequest& request, PluginSkin* pluginskin, Frame* frame, void* notifydata=0, TBool notify = EFalse);

    NetscapePlugInStreamLoaderClient();

private:
    Frame* m_frame;
    PluginStream* m_pluginstream;
    ResourceRequest* m_request;              
    NetscapePlugInStreamLoader* m_loader;
    PluginSkin* m_pluginskin; // not owned
    void* m_notifydata; // not owned
    int m_error;
    TBool m_notify;
    
};

} //namespace

#endif