Change name to reflect what it is now. Change GUID.

This commit is contained in:
Brendan Dahl 2012-01-27 11:02:27 -08:00
parent 337806deed
commit f46b0474ce
2 changed files with 7 additions and 7 deletions

View File

@ -1,5 +1,5 @@
resource pdf.js content/
component {2278dfd0-b75c-11e0-8257-1ba3d93c9f1a} components/pdfContentHandler.js
contract @mozilla.org/streamconv;1?from=application/pdf&to=*/* {2278dfd0-b75c-11e0-8257-1ba3d93c9f1a}
component {6457a96b-2d68-439a-bcfa-44465fbcdbb1} components/PdfStreamConverter.js
contract @mozilla.org/streamconv;1?from=application/pdf&to=*/* {6457a96b-2d68-439a-bcfa-44465fbcdbb1}

View File

@ -16,7 +16,7 @@ Cu.import('resource://gre/modules/XPCOMUtils.jsm');
Cu.import('resource://gre/modules/Services.jsm');
function log(aMsg) {
let msg = 'pdfContentHandler.js: ' + (aMsg.join ? aMsg.join('') : aMsg);
let msg = 'PdfStreamConverter.js: ' + (aMsg.join ? aMsg.join('') : aMsg);
Cc['@mozilla.org/consoleservice;1'].getService(Ci.nsIConsoleService)
.logStringMessage(msg);
dump(msg + '\n');
@ -66,13 +66,13 @@ RequestListener.prototype.recieve = function(event) {
};
function pdfContentHandler() {
function PdfStreamConverter() {
}
pdfContentHandler.prototype = {
PdfStreamConverter.prototype = {
// properties required for XPCOM registration:
classID: Components.ID('{2278dfd0-b75c-11e0-8257-1ba3d93c9f1a}'),
classID: Components.ID('{6457a96b-2d68-439a-bcfa-44465fbcdbb1}'),
classDescription: 'pdf.js Component',
contractID: '@mozilla.org/streamconv;1?from=application/pdf&to=*/*',
@ -156,4 +156,4 @@ pdfContentHandler.prototype = {
}
};
var NSGetFactory = XPCOMUtils.generateNSGetFactory([pdfContentHandler]);
var NSGetFactory = XPCOMUtils.generateNSGetFactory([PdfStreamConverter]);