Bug 1717486 Creates browser/components/screenshots directory.r=emalysz

Differential Revision: https://phabricator.services.mozilla.com/D118573
This commit is contained in:
Kajal Sah 2021-07-06 22:45:56 +00:00
Родитель 3af88f56b7
Коммит 6bd28604ba
5 изменённых файлов: 37 добавлений и 0 удалений

Просмотреть файл

@ -48,6 +48,7 @@ DIRS += [
"protections",
"protocolhandler",
"resistfingerprinting",
"screenshots",
"search",
"sessionstore",
"shell",

Просмотреть файл

@ -0,0 +1,8 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";
// TODO: will be utils functions for screenshots

Просмотреть файл

@ -0,0 +1,8 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";
// TODO: will create a component for screenshots functionality

Просмотреть файл

@ -0,0 +1,6 @@
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
browser.jar:
content/browser/screenshots/screenshots.js (content/screenshots.js)

Просмотреть файл

@ -0,0 +1,14 @@
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
EXTRA_JS_MODULES += [
"ScreenshotsUtils.jsm",
]
JAR_MANIFESTS += ["jar.mn"]
with Files("**"):
BUG_COMPONENT = ("Firefox", "Screenshots")