Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(262)

Unified Diff: webkit/plugins/npapi/plugin_stream_url.h

Issue 10066044: RefCounted types should not have public destructors, webkit/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Implementation ordering Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/plugins/npapi/plugin_lib_unittest.cc ('k') | webkit/plugins/npapi/plugin_stream_url.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_;
« no previous file with comments | « webkit/plugins/npapi/plugin_lib_unittest.cc ('k') | webkit/plugins/npapi/plugin_stream_url.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698