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

Unified Diff: mojo/services/html_viewer/webmimeregistry_impl.h

Issue 1037363002: Remove unnecessary 'virtual' annotation from mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Resolved merge conflicts Created 5 years, 9 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 | « mojo/services/html_viewer/weblayertreeview_impl.h ('k') | mojo/services/html_viewer/webscheduler_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/services/html_viewer/webmimeregistry_impl.h
diff --git a/mojo/services/html_viewer/webmimeregistry_impl.h b/mojo/services/html_viewer/webmimeregistry_impl.h
index d629154368285a836c5f3fae7566e957d9ddef6b..fe4baf5bb7d7f790c974bf44ac88ee378bb99404 100644
--- a/mojo/services/html_viewer/webmimeregistry_impl.h
+++ b/mojo/services/html_viewer/webmimeregistry_impl.h
@@ -16,29 +16,27 @@ class WebMimeRegistryImpl : public blink::WebMimeRegistry {
virtual ~WebMimeRegistryImpl() {}
// WebMimeRegistry methods:
- virtual blink::WebMimeRegistry::SupportsType supportsMIMEType(
- const blink::WebString& mime_type);
- virtual blink::WebMimeRegistry::SupportsType supportsImageMIMEType(
- const blink::WebString& mime_type);
- virtual blink::WebMimeRegistry::SupportsType supportsImagePrefixedMIMEType(
- const blink::WebString& mime_type);
- virtual blink::WebMimeRegistry::SupportsType supportsJavaScriptMIMEType(
- const blink::WebString& mime_type);
- virtual blink::WebMimeRegistry::SupportsType supportsMediaMIMEType(
+ blink::WebMimeRegistry::SupportsType supportsMIMEType(
+ const blink::WebString& mime_type) override;
+ blink::WebMimeRegistry::SupportsType supportsImageMIMEType(
+ const blink::WebString& mime_type) override;
+ blink::WebMimeRegistry::SupportsType supportsImagePrefixedMIMEType(
+ const blink::WebString& mime_type) override;
+ blink::WebMimeRegistry::SupportsType supportsJavaScriptMIMEType(
+ const blink::WebString& mime_type) override;
+ blink::WebMimeRegistry::SupportsType supportsMediaMIMEType(
const blink::WebString& mime_type,
const blink::WebString& codecs,
- const blink::WebString& key_system);
- virtual bool supportsMediaSourceMIMEType(
- const blink::WebString& mime_type,
- const blink::WebString& codecs);
- virtual blink::WebMimeRegistry::SupportsType supportsNonImageMIMEType(
- const blink::WebString& mime_type);
- virtual blink::WebString mimeTypeForExtension(
- const blink::WebString& extension);
- virtual blink::WebString wellKnownMimeTypeForExtension(
- const blink::WebString& extension);
- virtual blink::WebString mimeTypeFromFile(
- const blink::WebString& path);
+ const blink::WebString& key_system) override;
+ bool supportsMediaSourceMIMEType(const blink::WebString& mime_type,
+ const blink::WebString& codecs) override;
+ blink::WebMimeRegistry::SupportsType supportsNonImageMIMEType(
+ const blink::WebString& mime_type) override;
+ blink::WebString mimeTypeForExtension(
+ const blink::WebString& extension) override;
+ blink::WebString wellKnownMimeTypeForExtension(
+ const blink::WebString& extension) override;
+ blink::WebString mimeTypeFromFile(const blink::WebString& path) override;
};
} // namespace html_viewer
« no previous file with comments | « mojo/services/html_viewer/weblayertreeview_impl.h ('k') | mojo/services/html_viewer/webscheduler_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698