HomeSort by relevance Sort by last modified time
    Searched defs:NetscapePluginStream (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NetscapePluginStream.cpp 27 #include "NetscapePluginStream.h"
37 NetscapePluginStream::NetscapePluginStream(PassRefPtr<NetscapePlugin> plugin, uint64_t streamID, bool sendNotification, void* notificationData)
50 , m_deliveryDataTimer(RunLoop::main(), this, &NetscapePluginStream::deliverDataToPlugin)
55 NetscapePluginStream::~NetscapePluginStream()
62 void NetscapePluginStream::didReceiveResponse(const KURL& responseURL, uint32_t streamLength, uint32_t lastModifiedTime, const String& mimeType, const String& headers)
65 RefPtr<NetscapePluginStream> protect(this);
70 void NetscapePluginStream::didReceiveData(const char* bytes, int length)
73 RefPtr<NetscapePluginStream> protect(this)
    [all...]
NetscapePluginStream.h 46 class NetscapePluginStream : public RefCounted<NetscapePluginStream> {
48 static PassRefPtr<NetscapePluginStream> create(PassRefPtr<NetscapePlugin> plugin, uint64_t streamID, bool sendNotification, void* notificationData)
50 return adoptRef(new NetscapePluginStream(plugin, streamID, sendNotification, notificationData));
52 ~NetscapePluginStream();
69 NetscapePluginStream(PassRefPtr<NetscapePlugin>, uint64_t streamID, bool sendNotification, void* notificationData);
105 RunLoop::Timer<NetscapePluginStream> m_deliveryDataTimer;

Completed in 18 milliseconds