diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:33 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:33 +0000 |
commit | 086c044dc34dfc0f74fbe41f4ecb402b2cd34884 (patch) | |
tree | a4f824bd33cb075dd5aa3eb5a0a94af221bbe83a /browser/extensions/search-detection | |
parent | Adding debian version 124.0.1-1. (diff) | |
download | firefox-086c044dc34dfc0f74fbe41f4ecb402b2cd34884.tar.xz firefox-086c044dc34dfc0f74fbe41f4ecb402b2cd34884.zip |
Merging upstream version 125.0.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'browser/extensions/search-detection')
-rw-r--r-- | browser/extensions/search-detection/extension/api.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/browser/extensions/search-detection/extension/api.js b/browser/extensions/search-detection/extension/api.js index dd15b080ab..2eb7925104 100644 --- a/browser/extensions/search-detection/extension/api.js +++ b/browser/extensions/search-detection/extension/api.js @@ -61,7 +61,7 @@ this.addonsSearchDetection = class extends ExtensionAPI { _urls // We only want to collect "search URLs" (and not "suggestion" - // ones for instance). See `URL_TYPE` in `SearchUtils.jsm`. + // ones for instance). See `URL_TYPE` in `SearchUtils.sys.mjs`. .filter(({ type }) => type === "text/html") .forEach(({ template }) => { // If this is changed, double check the code in the background @@ -116,7 +116,7 @@ this.addonsSearchDetection = class extends ExtensionAPI { // search engines has changed, e.g., a new engine has been added or an // engine has been removed. // - // See: https://searchfox.org/mozilla-central/source/toolkit/components/search/SearchUtils.jsm#145-152 + // See: https://searchfox.org/mozilla-central/rev/cb44fc4f7bb84f2a18fedba64c8563770df13e34/toolkit/components/search/SearchUtils.sys.mjs#185-193 onSearchEngineModified: new ExtensionCommon.EventManager({ context, name: "addonsSearchDetection.onSearchEngineModified", |