Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(184)

Side by Side Diff: polymer_0.5.0/bower_components/gif.js/src/GIFEncoder.js

Issue 786953007: npm_modules: Fork bower_components into Polymer 0.4.0 and 0.5.0 versions (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 GIFEncoder.js 2 GIFEncoder.js
3 3
4 Authors 4 Authors
5 Kevin Weiner (original Java version - kweiner@fmsware.com) 5 Kevin Weiner (original Java version - kweiner@fmsware.com)
6 Thibault Imbert (AS3 version - bytearray.org) 6 Thibault Imbert (AS3 version - bytearray.org)
7 Johan Nordberg (JS version - code@johan-nordberg.com) 7 Johan Nordberg (JS version - code@johan-nordberg.com)
8 */ 8 */
9 9
10 var NeuQuant = require('./TypedNeuQuant.js'); 10 var NeuQuant = require('./TypedNeuQuant.js');
(...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after
394 }; 394 };
395 395
396 /* 396 /*
397 Retrieves the GIF stream 397 Retrieves the GIF stream
398 */ 398 */
399 GIFEncoder.prototype.stream = function() { 399 GIFEncoder.prototype.stream = function() {
400 return this.out; 400 return this.out;
401 }; 401 };
402 402
403 module.exports = GIFEncoder; 403 module.exports = GIFEncoder;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698