Home | History | Annotate | Download | only in webapp

Lines Matching refs:chrome

6 // WebKit- and Chrome-specific properties and methods. It is used only with
74 chrome.storage = {};
76 /** @type {chrome.Storage} */
77 chrome.storage.local;
79 /** @type {chrome.Storage} */
80 chrome.storage.sync;
83 chrome.Storage = function() {};
90 chrome.Storage.prototype.get = function(items, callback) {};
97 chrome.Storage.prototype.set = function(items, opt_callback) {};
104 chrome.Storage.prototype.remove = function(items, opt_callback) {};
110 chrome.Storage.prototype.clear = function(opt_callback) {};
113 chrome.app.runtime = {
114 /** @type {chrome.Event} */
119 chrome.app.window = {
129 * @see http://code.google.com/chrome/extensions/dev/contextMenus.html
131 chrome.contextMenus = {
132 /** @type {chrome.Event} */
137 chrome.identity = {
151 chrome.Event = function() {};
154 chrome.Event.prototype.addListener = function(callback) {};
157 chrome.Event.prototype.removeListener = function(callback) {};
160 chrome.extension.Port = function() {};
162 /** @type {chrome.Event} */
163 chrome.extension.Port.prototype.onMessage;
165 /** @type {chrome.Event} */
166 chrome.extension.Port.prototype.onDisconnect;
171 chrome.extension.Port.prototype.postMessage = function(message) {};
174 chrome.runtime = {
185 * @type {?function(string):chrome.extension.Port}
187 chrome.runtime.connectNative = function(name) {};
190 chrome.tabs;
192 /** @param {function(chrome.Tab):void} callback */
193 chrome.tabs.getCurrent = function(callback) {}
196 chrome.Tab = function() {
204 chrome.windows;
208 * @param {function(chrome.Window):void} callback */
209 chrome.windows.get = function(id, getInfo, callback) {}
212 chrome.Window = function() {
222 chrome.extension.sendMessage = function(message) {}
224 /** @type {chrome.Event} */
225 chrome.extension.onMessage;
228 chrome.permissions = {