diff --git a/docs/mots/index.rst b/docs/mots/index.rst index bce73322b2db..e7ee7b469b69 100644 --- a/docs/mots/index.rst +++ b/docs/mots/index.rst @@ -521,7 +521,7 @@ Core: docshell * - Includes - | `docshell/\*\*/\* `__ - | `uriloader/\*\*/\* `__ + | `uriloader/base/\*\*/\* `__ * - Group - dev-platform * - Bugzilla Components @@ -1428,6 +1428,8 @@ The Mozilla Networking Library | `dom/xhr/\*\*/\* `__ | `dom/network/\*\*/\* `__ | `dom/websocket/\*\*/\* `__ + | `uriloader/prefetch/\*\*/\* `__ + | `uriloader/preload/\*\*/\* `__ * - Group - dev-tech-network * - URL @@ -2779,6 +2781,7 @@ The downloads UI and service. - | `browser/components/downloads/\*\*/\* `__ | `toolkit/mozapps/downloads/\*\*/\* `__ + | `uriloader/exthandler/\*\*/\* `__ Enterprise Policies diff --git a/mots.yaml b/mots.yaml index 6119b518d8e7..a7c18a48fb2c 100644 --- a/mots.yaml +++ b/mots.yaml @@ -2,7 +2,7 @@ --- repo: mozilla-central created_at: '2021-10-14T12:50:40.073465' -updated_at: '2022-11-24T10:10:43.504958' +updated_at: '2022-11-25T15:09:17.773034' export: path: ./docs/mots/index.rst format: rst @@ -1276,7 +1276,7 @@ modules: description: '' includes: - docshell/**/* - - uriloader/**/* + - uriloader/base/**/* meta: owners_emeritus: - Boris Zbarsky @@ -2020,6 +2020,8 @@ modules: - dom/xhr/**/* - dom/network/**/* - dom/websocket/**/* + - uriloader/prefetch/**/* + - uriloader/preload/**/* meta: owners_emeritus: - Dragana Damjanovic @@ -3051,6 +3053,7 @@ modules: includes: - browser/components/downloads/**/* - toolkit/mozapps/downloads/**/* + - uriloader/exthandler/**/* meta: peers_emeritus: - Micah Tigley @@ -3649,5 +3652,5 @@ modules: machine_name: webextensions machine_name: toolkit hashes: - config: f44776f9d947cb103f6575c97782e98e6044816b - export: 42cc831813bee50c369828c927f25d3be816f5f8 + config: 153a286c9bba144273342ae039dd7d2e6fe5cf27 + export: e5897888bdf56e2fbce132ed4fadf7e1dfe0f7e5 diff --git a/uriloader/base/moz.build b/uriloader/base/moz.build index 945ab5a43968..1e17cd1d81b8 100644 --- a/uriloader/base/moz.build +++ b/uriloader/base/moz.build @@ -6,6 +6,12 @@ include("/ipc/chromium/chromium-config.mozbuild") +with Files("**"): + BUG_COMPONENT = ("Core", "Document Navigation") + +with Files("nsITransfer.idl"): + BUG_COMPONENT = ("Firefox", "File Handling") + XPIDL_SOURCES += [ "nsCURILoader.idl", "nsIContentHandler.idl", diff --git a/uriloader/exthandler/moz.build b/uriloader/exthandler/moz.build index 2d4c3de0ef67..0575fd95a5b5 100644 --- a/uriloader/exthandler/moz.build +++ b/uriloader/exthandler/moz.build @@ -6,6 +6,9 @@ SPHINX_TREES["/uriloader/exthandler"] = "docs" +with Files("**"): + BUG_COMPONENT = ("Firefox", "File Handling") + TEST_DIRS += ["tests"] XPIDL_SOURCES += [ diff --git a/uriloader/moz.build b/uriloader/moz.build index 07659656c6c1..0c86f4876566 100644 --- a/uriloader/moz.build +++ b/uriloader/moz.build @@ -6,9 +6,6 @@ SPHINX_TREES["/uriloader"] = "docs" -with Files("**"): - BUG_COMPONENT = ("Firefox", "File Handling") - DIRS += [ "base", "exthandler",