| Index: webkit/plugins/npapi/plugin_stream_url.h
|
| diff --git a/webkit/plugins/npapi/plugin_stream_url.h b/webkit/plugins/npapi/plugin_stream_url.h
|
| index 4bf5232230e7586f437fd0232b2853809d80e413..300e12943fb95b4751f12af908ade46a39f28715 100644
|
| --- a/webkit/plugins/npapi/plugin_stream_url.h
|
| +++ b/webkit/plugins/npapi/plugin_stream_url.h
|
| @@ -27,20 +27,15 @@ class PluginStreamUrl : public PluginStream,
|
| PluginInstance *instance,
|
| bool notify_needed,
|
| void *notify_data);
|
| - virtual ~PluginStreamUrl();
|
|
|
| // Stop sending the stream to the client.
|
| // Overrides the base Close so we can cancel our fetching the URL if
|
| // it is still loading.
|
| virtual bool Close(NPReason reason) OVERRIDE;
|
| -
|
| virtual WebPluginResourceClient* AsResourceClient() OVERRIDE;
|
| -
|
| virtual void CancelRequest() OVERRIDE;
|
|
|
| - //
|
| // WebPluginResourceClient methods
|
| - //
|
| virtual void WillSendRequest(const GURL& url, int http_status_code) OVERRIDE;
|
| virtual void DidReceiveResponse(const std::string& mime_type,
|
| const std::string& headers,
|
| @@ -55,6 +50,9 @@ class PluginStreamUrl : public PluginStream,
|
| virtual bool IsMultiByteResponseExpected() OVERRIDE;
|
| virtual int ResourceId() OVERRIDE;
|
|
|
| + protected:
|
| + virtual ~PluginStreamUrl();
|
| +
|
| private:
|
| GURL url_;
|
| unsigned long id_;
|
|
|