Skip to content

Commit 8bdadb8

Browse files
committed
Bug 1884671 - Add directory and pref for the new sidebar foundational work r=fxview-reviewers,sclements
Differential Revision: https://phabricator.services.mozilla.com/D204232
1 parent 193f2a7 commit 8bdadb8

File tree

4 files changed

+15
-0
lines changed

4 files changed

+15
-0
lines changed

browser/app/profile/firefox.js

+2
Original file line numberDiff line numberDiff line change
@@ -1847,6 +1847,8 @@ pref("pdfjs.previousHandler.alwaysAskBeforeHandling", false);
18471847
// Try to convert PDFs sent as octet-stream
18481848
pref("pdfjs.handleOctetStream", true);
18491849

1850+
pref("sidebar.companion", false);
1851+
18501852
// Is the sidebar positioned ahead of the content browser
18511853
pref("sidebar.position_start", true);
18521854

browser/components/moz.build

+1
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ DIRS += [
6262
"sessionstore",
6363
"shell",
6464
"shopping",
65+
"sidebar",
6566
"syncedtabs",
6667
"tabpreview",
6768
"tabunloader",

browser/components/sidebar/jar.mn

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# This Source Code Form is subject to the terms of the Mozilla Public
2+
# License, v. 2.0. If a copy of the MPL was not distributed with this
3+
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
4+
5+
browser.jar:

browser/components/sidebar/moz.build

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
2+
# vim: set filetype=python:
3+
# This Source Code Form is subject to the terms of the Mozilla Public
4+
# License, v. 2.0. If a copy of the MPL was not distributed with this
5+
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
6+
7+
JAR_MANIFESTS += ["jar.mn"]

0 commit comments

Comments
 (0)