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

Unified Diff: webkit/tools/test_shell/test_shell_webmimeregistry_impl.h

Issue 9969061: Changed TestShellWebMimeRegistryImpl to blacklist rather than whitelist containers and codecs. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 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
Index: webkit/tools/test_shell/test_shell_webmimeregistry_impl.h
diff --git a/webkit/tools/test_shell/test_shell_webmimeregistry_impl.h b/webkit/tools/test_shell/test_shell_webmimeregistry_impl.h
index 2c8ad6cea0433508df3e83feab7902bafde61951..101ba75028350b13b10854d66ddeee6528b712ee 100644
--- a/webkit/tools/test_shell/test_shell_webmimeregistry_impl.h
+++ b/webkit/tools/test_shell/test_shell_webmimeregistry_impl.h
@@ -29,12 +29,12 @@ class TestShellWebMimeRegistryImpl
const WebKit::WebString&, const WebKit::WebString&) OVERRIDE;
private:
- bool IsSupportedMediaMimeType(const std::string& mime_type);
- bool AreSupportedMediaCodecs(const std::vector<std::string>& codecs);
+ bool IsConditionalMediaMimeType(const std::string& mime_type);
+ bool HasConditionalMediaCodecs(const std::vector<std::string>& codecs);
typedef base::hash_set<std::string> MimeMappings;
- MimeMappings media_map_;
- MimeMappings codecs_map_;
+ MimeMappings conditional_media_map_;
+ MimeMappings conditional_codecs_map_;
DISALLOW_COPY_AND_ASSIGN(TestShellWebMimeRegistryImpl);
};

Powered by Google App Engine
This is Rietveld 408576698