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

Unified Diff: webkit/glue/plugins/pepper_url_loader.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_scrollbar.cc ('k') | webkit/glue/plugins/pepper_url_loader.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/plugins/pepper_url_loader.h
diff --git a/webkit/glue/plugins/pepper_url_loader.h b/webkit/glue/plugins/pepper_url_loader.h
index ee8ddd70e96304c2203e1bb4755d85fc8324bc24..f39a94dd0aa0323f8fa671a383333f209bacf0fe 100644
--- a/webkit/glue/plugins/pepper_url_loader.h
+++ b/webkit/glue/plugins/pepper_url_loader.h
@@ -44,7 +44,7 @@ class URLLoader : public Resource,
static const PPB_URLLoaderTrusted* GetTrustedInterface();
// Resource overrides.
- URLLoader* AsURLLoader() { return this; }
+ virtual URLLoader* AsURLLoader();
// PPB_URLLoader implementation.
int32_t Open(URLRequestInfo* request, PP_CompletionCallback callback);
@@ -82,7 +82,7 @@ class URLLoader : public Resource,
const WebKit::WebURLError& error);
// PluginInstance::Observer implementation.
- void InstanceDestroyed(PluginInstance* instance);
+ virtual void InstanceDestroyed(PluginInstance* instance);
URLResponseInfo* response_info() const { return response_info_; }
« no previous file with comments | « webkit/glue/plugins/pepper_scrollbar.cc ('k') | webkit/glue/plugins/pepper_url_loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698