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

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

Issue 5648004: Add the "virtual" keyword on method overrides that are missing it. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Missing file Created 10 years 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/glue/plugins/pepper_widget.cc ('k') | webkit/glue/plugins/plugin_stream_url.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/plugins/plugin_stream_url.h
diff --git a/webkit/glue/plugins/plugin_stream_url.h b/webkit/glue/plugins/plugin_stream_url.h
index 8c03edc0887c0548daa07e8be912901c67753511..3fdbe17f707a357df1f141431c1fdab482c717f1 100644
--- a/webkit/glue/plugins/plugin_stream_url.h
+++ b/webkit/glue/plugins/plugin_stream_url.h
@@ -43,21 +43,17 @@ class PluginStreamUrl : public PluginStream,
//
// WebPluginResourceClient methods
//
- void WillSendRequest(const GURL& url, int http_status_code);
- void DidReceiveResponse(const std::string& mime_type,
- const std::string& headers,
- uint32 expected_length,
- uint32 last_modified,
- bool request_is_seekable);
- void DidReceiveData(const char* buffer, int length, int data_offset);
- void DidFinishLoading();
- void DidFail();
- bool IsMultiByteResponseExpected() {
- return seekable();
- }
- int ResourceId() {
- return id_;
- }
+ virtual void WillSendRequest(const GURL& url, int http_status_code);
+ virtual void DidReceiveResponse(const std::string& mime_type,
+ const std::string& headers,
+ uint32 expected_length,
+ uint32 last_modified,
+ bool request_is_seekable);
+ virtual void DidReceiveData(const char* buffer, int length, int data_offset);
+ virtual void DidFinishLoading();
+ virtual void DidFail();
+ virtual bool IsMultiByteResponseExpected();
+ virtual int ResourceId();
private:
GURL url_;
« no previous file with comments | « webkit/glue/plugins/pepper_widget.cc ('k') | webkit/glue/plugins/plugin_stream_url.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698