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

Unified Diff: Source/core/plugins/MimeTypeArray.idl

Issue 14676023: Remove DOM prefix from plugins IDL interfaces (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix build due to (unrelated) missing include in generated code Created 7 years, 7 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: Source/core/plugins/MimeTypeArray.idl
diff --git a/Source/core/plugins/DOMMimeTypeArray.idl b/Source/core/plugins/MimeTypeArray.idl
similarity index 81%
rename from Source/core/plugins/DOMMimeTypeArray.idl
rename to Source/core/plugins/MimeTypeArray.idl
index fd5fe9e0936c2e63af0ae77b1c4dcae59abb15eb..435e22f79e8362ded8d9a6391e4b09661d5ef797 100644
--- a/Source/core/plugins/DOMMimeTypeArray.idl
+++ b/Source/core/plugins/MimeTypeArray.idl
@@ -19,10 +19,10 @@
*/
[
- InterfaceName=MimeTypeArray
-] interface DOMMimeTypeArray {
+ ImplementedAs=DOMMimeTypeArray
+] interface MimeTypeArray {
readonly attribute unsigned long length;
- getter DOMMimeType item([Default=Undefined] optional unsigned long index);
- getter DOMMimeType namedItem([Default=Undefined] optional DOMString name);
+ getter MimeType item([Default=Undefined] optional unsigned long index);
+ getter MimeType namedItem([Default=Undefined] optional DOMString name);
};

Powered by Google App Engine
This is Rietveld 408576698