blob: b4e98fa2b07e57190a26b09bc91d77a149d7c62d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
cr.define('hungRendererDialog', function() {
'use strict';
/**
* Disables the controls while the dialog is busy.
*/
function disableControls() {
$('kill').disabled = true;
$('wait').disabled = true;
}
/**
* Close the dialog and pass a result value to the dialog close handler.
* @param {boolean} result The value to pass to the dialog close handler.
*/
function closeWithResult(result) {
disableControls();
var json = JSON.stringify([result]);
chrome.send('DialogClose', [json]);
}
/**
* Inserts translated strings on loading.
*/
function initialize() {
i18nTemplate.process(document, templateData);
$('kill').onclick = function() {
closeWithResult(true);
}
$('wait').onclick = function() {
closeWithResult(false);
}
chrome.send('requestTabContentsList')
}
/**
* Adds elements to the DOM to populate the tab contents list box area of the
* dialog. Substitutes the favicon source and title text from the details
* using a template mechanism (clones hidden parts of the dialog DOM).
* @param {Array.<{title: string, url: string}>} tabDetailsList Array of tab
* contents detail objects containing |url| and |title| for each frozen
* tab.
*/
function setTabContentsList(tabDetailsList) {
var numTabs = tabDetailsList.length;
for (var i = 0; i < numTabs; i++) {
var listItem = document.createElement('li');
listItem.style.backgroundImage = url('chrome://favicon/size/32/' +
tabDetailsList[i].url);
listItem.textContent = tabDetailsList[i].title;
$('tab-table').appendChild(listItem)
}
}
return {
initialize: initialize,
setTabContentsList: setTabContentsList,
};
});
document.addEventListener('DOMContentLoaded', hungRendererDialog.initialize);
|