diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js index 1165565c1ae..becafc6283c 100644 --- a/browser/app/profile/firefox.js +++ b/browser/app/profile/firefox.js @@ -1519,7 +1519,10 @@ pref("browser.bookmarks.editDialog.maxRecentFolders", 7); pref("browser.taskbar.lists.legacyBackend", false); - pref("browser.taskbar.lists.enabled", true); +// Log levels + pref("browser.new_identity.log_level", "Info"); + + pref("browser.taskbar.lists.enabled", false); pref("browser.taskbar.lists.frequent.enabled", true); pref("browser.taskbar.lists.recent.enabled", false); pref("browser.taskbar.lists.maxListItemCount", 7); diff --git a/browser/base/content/appmenu-viewcache.inc.xhtml b/browser/base/content/appmenu-viewcache.inc.xhtml index 51b21bb4736..5cdf76f6560 100644 --- a/browser/base/content/appmenu-viewcache.inc.xhtml +++ b/browser/base/content/appmenu-viewcache.inc.xhtml @@ -47,6 +47,10 @@ data-l10n-id="appmenuitem-new-private-window" key="key_privatebrowsing" command="Tools:PrivateBrowsing"/> + diff --git a/browser/base/content/browser-init.js b/browser/base/content/browser-init.js index 2ac19168354..e15df4ab7d6 100644 --- a/browser/base/content/browser-init.js +++ b/browser/base/content/browser-init.js @@ -233,6 +233,9 @@ var gBrowserInit = { // doesn't flicker as the window is being shown. DownloadsButton.init(); + // Init the NewIdentityButton + NewIdentityButton.init(); + // Certain kinds of automigration rely on this notification to complete // their tasks BEFORE the browser window is shown. SessionStore uses it to // restore tabs into windows AFTER important parts like gMultiProcessBrowser @@ -1128,6 +1131,8 @@ var gBrowserInit = { DownloadsButton.uninit(); + NewIdentityButton.uninit(); + if (gToolbarKeyNavEnabled) { ToolbarKeyboardNavigator.uninit(); } diff --git a/browser/base/content/browser-menubar.inc b/browser/base/content/browser-menubar.inc index 0075a610d86..2483668bef5 100644 --- a/browser/base/content/browser-menubar.inc +++ b/browser/base/content/browser-menubar.inc @@ -28,6 +28,10 @@ + + +