Bug 1022925 - Part 1: move addressReferences to addressmetadata folder. r=lchang,scottwu

MozReview-Commit-ID: 4vRodOAyDdB

--HG--
rename : browser/extensions/formautofill/content/addressReferences.js => browser/extensions/formautofill/addressmetadata/addressReferences.js
extra : rebase_source : 69f1dd8be13d96da6209194aaa7c2d3bf53e3810
This commit is contained in:
steveck-chung 2017-11-10 14:39:44 +08:00
Родитель 18d07a7d13
Коммит 84109f9c52
4 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -30,6 +30,10 @@ var gExceptionPaths = [
// browser/extensions/pdfjs/content/build/pdf.js#1999
"resource://pdf.js/web/images/",
// Exclude all the metadata paths under the country metadata folder because these
// paths will be concatenated in FormAutofillUtils.jsm based on different country/region.
"resource://formautofill/addressmetadata/",
];
// These are not part of the omni.ja file, so we find them only when running

Просмотреть файл

@ -8,7 +8,7 @@ this.EXPORTED_SYMBOLS = ["FormAutofillUtils"];
const {classes: Cc, interfaces: Ci, utils: Cu, results: Cr} = Components;
const ADDRESS_REFERENCES = "chrome://formautofill/content/addressReferences.js";
const ADDRESS_REFERENCES = "resource://formautofill/addressmetadata/addressReferences.js";
// TODO: We only support US in MVP. We are going to support more countries in
// bug 1370193.

Просмотреть файл

@ -6,6 +6,7 @@
% resource formautofill %res/
res/ (*.jsm)
res/phonenumberutils/ (phonenumberutils/*.jsm)
res/addressmetadata/ (addressmetadata/*)
% content formautofill %content/
content/ (content/*)