Skip to content

Commit 552f82e

Browse files
authored
Organize chromium/* into chromium/(background-scripts|pages|images) (EFForg#14874)
1 parent 3a6359b commit 552f82e

38 files changed

+48
-48
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ chrome.webNavigation.onCompleted.addListener(function() {
9292
});
9393

9494
// Records which tabId's are active in the HTTPS Switch Planner (see
95-
// devtools-panel.js).
95+
// pages/devtools/panel-ux.js).
9696
var switchPlannerEnabledFor = {};
9797
// Detailed information recorded when the HTTPS Switch Planner is active.
9898
// Structure is:
@@ -121,7 +121,7 @@ function updateState () {
121121
if ('setIcon' in chrome.browserAction) {
122122
chrome.browserAction.setIcon({
123123
path: {
124-
38: 'icons/icon-' + iconState + '-38.png'
124+
38: 'images/icons/icon-' + iconState + '-38.png'
125125
}
126126
});
127127
}
@@ -153,7 +153,7 @@ function updateState () {
153153
* The following allows fennec to interact with the popup ui
154154
* */
155155
chrome.browserAction.onClicked.addListener(e => {
156-
const url = chrome.extension.getURL("popup.html?tabId=" + e.id);
156+
const url = chrome.extension.getURL("/pages/popup/index.html?tabId=" + e.id);
157157
chrome.tabs.create({
158158
url
159159
});

chromium/icons/icon-active-128.png

Lines changed: 0 additions & 1 deletion
This file was deleted.

chromium/icons/icon-active-38.png

Lines changed: 0 additions & 1 deletion
This file was deleted.

chromium/icons/icon-active-48.png

Lines changed: 0 additions & 1 deletion
This file was deleted.

chromium/icons/icon-blocking-38.png

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)