Lines Matching full:appdata
12 * @param {Object} appData The data object that describes the app.
16 function App(appData) {
19 el.appData = appData;
29 assert(this.appData.id, 'Got an app without an ID');
32 this.setAttribute('app-id', this.appData.id);
35 appImg.src = this.appData.icon_big;
38 appImg.style.WebkitMaskImage = url(this.appData.icon_big);
46 appSpan.textContent = this.appData.name;
75 chrome.send('launchApp', [this.appData.id, NTP_APPS_MAXIMIZED]);
122 * @param {Object} appData The data object that describes the app.
124 appendApp: function(appData) {
125 this.appendTile(new App(appData));