Home | History | Annotate | Download | only in picasaweb_uploader

Lines Matching full:hash

23  * @param {string} hash Hash value unique to this uploader (to differentiate
26 function Uploader(files, album, client, hash) {
33 this.hash = hash;
60 // We pass unique hash to the notification dom, so it will distinct this
64 chrome.extension.getURL('notification.html' + this.hash));
124 bg.removeUploader(this.hash);
286 var hash = '#' + this.lastUploaderHash_++;
287 var uploader = new Uploader(files, album, this.client, hash);
288 this.uploaders_[hash] = uploader;
293 * Returns an Uploader object by hash.
294 * @param {string} hash Unique hash.
295 * @return {Uploader} Uploader object with given hash.
297 getUploader: function(hash) {
298 return this.uploaders_[hash];
302 * Removes an Uploader object by hash.
303 * @param {string} hash Unique hash.
305 removeUploader: function(hash) {
306 this.uploaders_[hash] = null;