Rename the "xpt" manifest directive to "interfaces", per bug 568691 comment 66.

This commit is contained in:
Benjamin Smedberg 2010-06-27 21:50:51 -04:00
parent 67fa2b02d6
commit a27563c8b7
2 changed files with 2 additions and 2 deletions

View File

@ -2,5 +2,5 @@
httpd.jar: httpd.jar:
% component {54ef6f81-30af-4b1d-ac55-8ba811293e41} components/httpd.js % component {54ef6f81-30af-4b1d-ac55-8ba811293e41} components/httpd.js
% contract @mozilla.org/server/jshttp;1 {54ef6f81-30af-4b1d-ac55-8ba811293e41} % contract @mozilla.org/server/jshttp;1 {54ef6f81-30af-4b1d-ac55-8ba811293e41}
% xpt components/test_necko.xpt % interfaces components/test_necko.xpt
#endif #endif

View File

@ -90,7 +90,7 @@ struct ManifestDirective
static const ManifestDirective kParsingTable[] = { static const ManifestDirective kParsingTable[] = {
{ "binary-component", 1, true, false, false, { "binary-component", 1, true, false, false,
&nsComponentManagerImpl::ManifestBinaryComponent, NULL }, &nsComponentManagerImpl::ManifestBinaryComponent, NULL },
{ "xpt", 1, true, false, false, { "interfaces", 1, true, false, false,
&nsComponentManagerImpl::ManifestXPT, NULL }, &nsComponentManagerImpl::ManifestXPT, NULL },
{ "component", 2, true, false, false, { "component", 2, true, false, false,
&nsComponentManagerImpl::ManifestComponent, NULL }, &nsComponentManagerImpl::ManifestComponent, NULL },