Commit 8d0bf55f authored by henry's avatar henry Committed by jwilde
Browse files

BB 43864: Modify the urlbar for Base Browser.

parent c88f892a
Loading
Loading
Loading
Loading
+30 −1
Original line number Diff line number Diff line
@@ -15,6 +15,7 @@ ChromeUtils.defineESModuleGetters(lazy, {
  ScreenshotsUtils: "resource:///modules/ScreenshotsUtils.sys.mjs",
  TranslationsParent: "resource://gre/actors/TranslationsParent.sys.mjs",
  UrlbarUtils: "moz-src:///browser/components/urlbar/UrlbarUtils.sys.mjs",
  PrivateBrowsingUtils: "resource://gre/modules/PrivateBrowsingUtils.sys.mjs",
});

ChromeUtils.defineLazyGetter(lazy, "logger", () =>
@@ -79,6 +80,9 @@ const DEFAULT_ACTIONS = {
    icon: "chrome://mozapps/skin/extensions/category-extensions.svg",
    label: "quickactions-addons",
    onPick: openAddonsUrl("addons://discover/"),
    // Hide in base-browser, since we don't want to open extensions
    // "recommendations" tab. tor-browser#43864.
    disabled: () => true,
  },
  bookmarks: {
    l10nCommands: ["quickactions-cmd-bookmarks", "quickactions-bookmarks2"],
@@ -101,6 +105,12 @@ const DEFAULT_ACTIONS = {
        .getElementById("Tools:Sanitize")
        .doCommand();
    },
    // Disable in permanent private browsing. tor-browser#43864.
    // NOTE: This should also be disabled in private windows, but we don't have
    // access to a Window element to check. See mozilla bug 1980912.
    disabled: () => {
      return lazy.PrivateBrowsingUtils.permanentPrivateBrowsing;
    },
  },
  downloads: {
    l10nCommands: ["quickactions-cmd-downloads"],
@@ -113,13 +123,18 @@ const DEFAULT_ACTIONS = {
    icon: "chrome://mozapps/skin/extensions/category-extensions.svg",
    label: "quickactions-extensions",
    onPick: openAddonsUrl("addons://list/extension"),
    // Hide in base-browser since we do not want to encourage users to change
    // their extensions/addons. tor-browser#43864.
    disabled: () => true,
  },
  help: {
    l10nCommands: ["quickactions-cmd-help"],
    icon: "chrome://global/skin/icons/help.svg",
    label: "quickactions-help",
    // Open the base-browser support/help page, rather than Firefox's.
    // tor-browser#43864.
    onPick: openUrlFun(
      "https://support.mozilla.org/products/firefox?as=u&utm_source=inproduct"
      Services.prefs.getStringPref("browser.base-browser-support-url", "")
    ),
  },
  firefoxview: {
@@ -129,6 +144,9 @@ const DEFAULT_ACTIONS = {
    onPick: (_queryContext, controller) => {
      controller.browserWindow.FirefoxViewHandler.openTab();
    },
    // Hide in base-browser since firefoxview is disabled.
    // tor-browser#43864 and tor-browser#42037.
    disabled: () => true,
  },
  inspect: {
    l10nCommands: ["quickactions-cmd-inspector2"],
@@ -158,6 +176,10 @@ const DEFAULT_ACTIONS = {
    l10nCommands: ["quickactions-cmd-logins"],
    label: "quickactions-logins2",
    onPick: openUrlFun("about:logins"),
    // Disabled in base browser since saved passwords is not well supported in
    // Tor Browser, and should be disabled in Mullvad Browser.
    // tor-browser#44177.
    disabled: () => true,
  },
  print: {
    l10nCommands: ["quickactions-cmd-print"],
@@ -177,6 +199,10 @@ const DEFAULT_ACTIONS = {
    onPick: (_queryContext, controller) => {
      controller.browserWindow.OpenBrowserWindow({ private: true });
    },
    // Disable in permanent private browsing. tor-browser#44177.
    disabled: () => {
      return lazy.PrivateBrowsingUtils.permanentPrivateBrowsing;
    },
  },
  refresh: {
    l10nCommands: ["quickactions-cmd-refresh"],
@@ -345,6 +371,9 @@ export class QuickActionsLoaderDefault {
    let keys = Object.keys(DEFAULT_ACTIONS);
    for (const key of keys) {
      let actionData = DEFAULT_ACTIONS[key];
      if (actionData.disabled?.()) {
        continue;
      }
      let messages = await lazy.gFluentStrings.formatMessages(
        actionData.l10nCommands.map(id => ({ id }))
      );
+9 −0
Original line number Diff line number Diff line
@@ -505,6 +505,15 @@ export class SearchModeSwitcher {
      if (!lazy.UrlbarPrefs.get(pref)) {
        continue;
      }
      if (
        source === lazy.UrlbarUtils.RESULT_SOURCE.HISTORY &&
        lazy.PrivateBrowsingUtils.permanentPrivateBrowsing
      ) {
        // Do not show the search history option in PBM. tor-browser#43864.
        // Although, it can still be triggered with "^" restrict keyword or
        // through an app menu item. See also mozilla bug 1980928.
        continue;
      }
      let name = lazy.UrlbarUtils.getResultSourceName(source);
      let { icon } = await this.#getDisplayedEngineDetails({
        source,