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

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

Issue 1090953002: Small cleanups in the Mojo HTML viewer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
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 fe4baf5bb7d7f790c974bf44ac88ee378bb99404..87c0156df381ceaf20c0c9169afb5a35db8f5f42 100644
--- a/mojo/services/html_viewer/webmimeregistry_impl.h
+++ b/mojo/services/html_viewer/webmimeregistry_impl.h
@@ -16,27 +16,27 @@ class WebMimeRegistryImpl : public blink::WebMimeRegistry {
virtual ~WebMimeRegistryImpl() {}
// WebMimeRegistry methods:
- 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(
+ 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(
const blink::WebString& mime_type,
const blink::WebString& codecs,
- 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;
+ 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);
};
} // namespace html_viewer
« no previous file with comments | « mojo/services/html_viewer/weblayertreeview_impl.h ('k') | mojo/services/html_viewer/webnotificationmanager_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698