Name Description Size
.eslintrc.js 343
content
docs
jar.mn 800
MerinoClient.sys.mjs Client class for querying the Merino server. Each instance maintains its own session state including a session ID and sequence number that is included in its requests to Merino. 12526
metrics.yaml 29250
moz.build 3161
pings.yaml 1532
private
QuickActionsLoaderDefault.sys.mjs 11203
QuickSuggest.sys.mjs This class manages the quick suggest feature (a.k.a Firefox Suggest) and has related helpers. 17495
tests
unitconverters
UrlbarController.sys.mjs The address bar controller handles queries from the address bar, obtains results and returns them to the UI for display. Listeners may be added to listen for the results. They may support the following methods which may be called when a query is run: - onQueryStarted(queryContext) - onQueryResults(queryContext) - onQueryCancelled(queryContext) - onQueryFinished(queryContext) - onQueryResultRemoved(index) - onViewOpen() - onViewClose() 44974
UrlbarEventBufferer.sys.mjs The UrlbarEventBufferer can queue up events and replay them later, to make the urlbar results more predictable. Search results arrive asynchronously, which means that keydown events may arrive before results do, and therefore not have the effect the user intends. That's especially likely to happen with the down arrow and enter keys, due to the one-off search buttons: if the user very quickly pastes something in the input, presses the down arrow key, and then hits enter, they are probably expecting to visit the first result. But if there are no results, then pressing down and enter will trigger the first one-off button. To prevent that undesirable behavior, certain keys are buffered and deferred until more results arrive, at which time they're replayed. 12965
UrlbarInput.sys.mjs Implements the text input part of the address bar UI. 154061
UrlbarMuxerUnifiedComplete.sys.mjs This module exports a component used to sort results in a UrlbarQueryContext. 53732
UrlbarPrefs.sys.mjs This module exports the UrlbarPrefs singleton, which manages preferences for the urlbar. It also provides access to urlbar Nimbus variables as if they are preferences, but only for variables with fallback prefs. 65049
UrlbarProviderAboutPages.sys.mjs This module exports a provider that offers about pages. 2603
UrlbarProviderAliasEngines.sys.mjs This module exports a provider that offers engines with aliases as heuristic results. 2728
UrlbarProviderAutofill.sys.mjs This module exports a provider that provides an autofill result. 34322
UrlbarProviderBookmarkKeywords.sys.mjs This module exports a provider that offers bookmarks with keywords. 3302
UrlbarProviderCalculator.sys.mjs A provider that returns a suggested url to the user based on what they have currently typed so they can navigate directly. 11416
UrlbarProviderClipboard.sys.mjs A provider that returns a suggested url to the user based on a valid URL stored in the clipboard. 4962
UrlbarProviderContextualSearch.sys.mjs A provider that returns an option for using the search engine provided by the active view if it utilizes OpenSearch. 8303
UrlbarProviderHeuristicFallback.sys.mjs This module exports a provider that provides a heuristic result. The result either vists a URL or does a search with the current engine. This result is always the ultimate fallback for any query, so this provider is always active. 11407
UrlbarProviderHistoryUrlHeuristic.sys.mjs This module exports a provider that provides a heuristic result. The result will be provided if the query requests the URL and the URL is in Places with the page title. 4181
UrlbarProviderInputHistory.sys.mjs This module exports a provider that offers input history (aka adaptive history) results. These results map typed search strings to Urlbar results. That way, a user can find a particular result again by typing the same string. 8863
UrlbarProviderInterventions.sys.mjs A node in the QueryScorer's phrase tree. 28917
UrlbarProviderOmnibox.sys.mjs This module exports a provider class that is used for providers created by extensions using the `omnibox` API. 6015
UrlbarProviderOpenTabs.sys.mjs This module exports a provider, returning open tabs matches for the urlbar. It is also used to register and unregister open tabs. 12100
UrlbarProviderPlaces.sys.mjs eslint complexity: ["error", 53] 54331
UrlbarProviderPrivateSearch.sys.mjs This module exports a provider returning a private search entry. 4076
UrlbarProviderQuickActions.sys.mjs A provider that returns a suggested url to the user based on what they have currently typed so they can navigate directly. 10662
UrlbarProviderQuickSuggest.sys.mjs A provider that returns a suggested url to the user based on what they have currently typed so they can navigate directly. 32422
UrlbarProviderQuickSuggestContextualOptIn.sys.mjs This module exports a provider that offers a search engine when the user is typing a search engine domain. 7640
UrlbarProviderRecentSearches.sys.mjs This module exports a provider returning the user's recent searches. 4440
UrlbarProviderRemoteTabs.sys.mjs This module exports a provider that offers remote tabs. 7858
UrlbarProviderSearchSuggestions.sys.mjs This module exports a provider that offers search engine suggestions. 21605
UrlbarProviderSearchTips.sys.mjs This module exports a provider that might show a tip when the user opens the newtab or starts an organic search with their default search engine. 19038
UrlbarProvidersManager.sys.mjs This module exports a component used to register search providers and manage the connection between such providers and a UrlbarController. 27361
UrlbarProviderTabToSearch.sys.mjs This module exports a provider that offers a search engine when the user is typing a search engine domain. 14621
UrlbarProviderTokenAliasEngines.sys.mjs This module exports a provider that offers token alias engines. 7184
UrlbarProviderTopSites.sys.mjs This module exports a provider returning the user's newtab Top Sites. 12510
UrlbarProviderUnitConversion.sys.mjs Provide unit converter. 4906
UrlbarProviderWeather.sys.mjs A provider that returns a suggested url to the user based on what they have currently typed so they can navigate directly. This provider is active only when either the Rust backend is disabled or weather keywords are defined in Nimbus. When Rust is enabled and keywords are not defined in Nimbus, the Rust component serves the initial weather suggestion and UrlbarProviderQuickSuggest handles it along with other suggestion types. Once the Rust backend is enabled by default and we no longer want to experiment with weather keywords, this provider can be removed along with the legacy telemetry it records. 9863
UrlbarResult.sys.mjs This module exports a urlbar result class, each representing a single result found by a provider that can be passed from the model to the view through the controller. It is mainly defined by a result type, and a payload, containing the data. A few getters allow to retrieve information common to all the result types. 13219
UrlbarSearchOneOffs.sys.mjs The one-off search buttons in the urlbar. 16666
UrlbarSearchUtils.sys.mjs Search service utilities for urlbar. The only reason these functions aren't a part of UrlbarUtils is that we want O(1) case-insensitive lookup for search aliases, and to do that we need to observe the search service, persistent state, and an init method. A separate object is easier. 14716
UrlbarTokenizer.sys.mjs This module exports a tokenizer to be used by the urlbar model. Emitted tokens are objects in the shape { type, value }, where type is one of UrlbarTokenizer.TYPE. 15317
UrlbarUtils.sys.mjs This module exports the UrlbarUtils singleton, which contains constants and helper functions that are useful to all components of the urlbar. 96293
UrlbarValueFormatter.sys.mjs Applies URL highlighting and other styling to the text in the urlbar input, depending on the text. 17548
UrlbarView.sys.mjs Receives and displays address bar autocomplete results. 124127