Bug 1494170: Show proper icon of runtime. r=Gijs,jdescottes

Depends on D7036

Differential Revision: https://phabricator.services.mozilla.com/D7037

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Daisuke Akatsuka 2018-10-05 03:52:12 +00:00
Родитель bbc1c0f059
Коммит 22dc905fe7
7 изменённых файлов: 35 добавлений и 2 удалений

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

@ -168,6 +168,15 @@ var whitelist = [
platforms: ["macosx"]},
// Bug 1483277 (temporarily unreferenced)
{file: "chrome://browser/content/browser.xhtml"},
// Bug 1494170
// (The references to these files are dynamically generated, so the test can't
// find the references)
{file: "chrome://devtools/skin/images/aboutdebugging-firefox-aurora.svg",
isFromDevTools: true},
{file: "chrome://devtools/skin/images/aboutdebugging-firefox-beta.svg",
isFromDevTools: true},
{file: "chrome://devtools/skin/images/aboutdebugging-firefox-release.svg",
isFromDevTools: true},
];
whitelist = new Set(whitelist.filter(item =>

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

@ -68,10 +68,14 @@ async function createClientForRuntime(runtime) {
async function getRuntimeInfo(client) {
const deviceFront = await client.mainRoot.getFront("device");
const { brandName: name, version } = await deviceFront.getDescription();
const { brandName: name, channel, version } = await deviceFront.getDescription();
const icon =
(channel === "release" || channel === "beta" || channel === "aurora")
? `chrome://devtools/skin/images/aboutdebugging-firefox-${ channel }.svg`
: "chrome://devtools/skin/images/aboutdebugging-firefox-nightly.svg";
return {
icon: "chrome://branding/content/icon64.png",
icon,
name,
version,
};

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

@ -114,7 +114,11 @@ devtools.jar:
skin/images/filter-swatch.svg (themes/images/filter-swatch.svg)
skin/images/aboutdebugging-collapse-icon.svg (themes/images/aboutdebugging-collapse-icon.svg)
skin/images/aboutdebugging-connect-icon.svg (themes/images/aboutdebugging-connect-icon.svg)
skin/images/aboutdebugging-firefox-aurora.svg (themes/images/aboutdebugging-firefox-aurora.svg)
skin/images/aboutdebugging-firefox-beta.svg (themes/images/aboutdebugging-firefox-beta.svg)
skin/images/aboutdebugging-firefox-logo.svg (themes/images/aboutdebugging-firefox-logo.svg)
skin/images/aboutdebugging-firefox-nightly.svg (themes/images/aboutdebugging-firefox-nightly.svg)
skin/images/aboutdebugging-firefox-release.svg (themes/images/aboutdebugging-firefox-release.svg)
skin/images/aboutdebugging-globe-icon.svg (themes/images/aboutdebugging-globe-icon.svg)
skin/images/fox-smiling.svg (themes/images/fox-smiling.svg)
skin/images/grid.svg (themes/images/grid.svg)

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

После

Ширина:  |  Высота:  |  Размер: 61 KiB

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

После

Ширина:  |  Высота:  |  Размер: 30 KiB

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

После

Ширина:  |  Высота:  |  Размер: 19 KiB

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

После

Ширина:  |  Высота:  |  Размер: 16 KiB