mirror of
https://github.com/zen-browser/desktop.git
synced 2026-05-28 07:45:09 +00:00
30 lines
1.2 KiB
C++
30 lines
1.2 KiB
C++
diff --git a/browser/components/urlbar/UrlbarUtils.sys.mjs b/browser/components/urlbar/UrlbarUtils.sys.mjs
|
|
index caceb63a04fe282d7c906e27a6a2cfebc1ec8cda..74e395e649dd2cbe84683cb583d641b5596082d4 100644
|
|
--- a/browser/components/urlbar/UrlbarUtils.sys.mjs
|
|
+++ b/browser/components/urlbar/UrlbarUtils.sys.mjs
|
|
@@ -81,6 +81,7 @@ export var UrlbarUtils = {
|
|
RESTRICT_SEARCH_KEYWORD: "restrictSearchKeyword",
|
|
SUGGESTED_INDEX: "suggestedIndex",
|
|
TAIL_SUGGESTION: "tailSuggestion",
|
|
+ ZEN_ACTION: "zenAction",
|
|
}),
|
|
|
|
// Defines provider types.
|
|
@@ -140,6 +141,7 @@ export var UrlbarUtils = {
|
|
OTHER_NETWORK: 6,
|
|
ADDON: 7,
|
|
ACTIONS: 8,
|
|
+ ZEN_ACTIONS: 9,
|
|
}),
|
|
|
|
// Per-result exposure telemetry.
|
|
@@ -561,6 +563,8 @@ export var UrlbarUtils = {
|
|
return this.RESULT_GROUP.HEURISTIC_FALLBACK;
|
|
case "UrlbarProviderHistoryUrlHeuristic":
|
|
return this.RESULT_GROUP.HEURISTIC_HISTORY_URL;
|
|
+ case "ZenUrlbarProviderGlobalActions":
|
|
+ return this.RESULT_GROUP.ZEN_ACTION;
|
|
case "UrlbarProviderOmnibox":
|
|
return this.RESULT_GROUP.HEURISTIC_OMNIBOX;
|
|
case "UrlbarProviderRestrictKeywordsAutofill":
|