Skip to content

Commit

Permalink
Updated closure patch and updated to latest revision
Browse files Browse the repository at this point in the history
  • Loading branch information
josephg committed May 10, 2013
1 parent a9e680b commit da20464
Showing 1 changed file with 9 additions and 9 deletions.
@@ -1,8 +1,8 @@
Index: closure/goog/net/tmpnetwork.js
Index: goog/net/tmpnetwork.js
===================================================================
--- closure/goog/net/tmpnetwork.js (revision 1850)
+++ closure/goog/net/tmpnetwork.js (working copy)
@@ -92,44 +92,26 @@
--- goog/net/tmpnetwork.js (revision 2519)
+++ goog/net/tmpnetwork.js (working copy)
@@ -103,44 +103,26 @@
var channelDebug = new goog.net.ChannelDebug();
channelDebug.debug('TestLoadImage: loading ' + url);
var img = new Image();
Expand All @@ -15,7 +15,7 @@ Index: closure/goog/net/tmpnetwork.js
- channelDebug.dumpException(e);
- }
+ var timer = null;
+ createHandler = function(result, message) {
+ var createHandler = function(result, message) {
+ return function() {
+ try {
+ channelDebug.debug('TestLoadImage: ' + message);
Expand Down Expand Up @@ -65,11 +65,11 @@ Index: closure/goog/net/tmpnetwork.js
if (img.ontimeout) {
img.ontimeout();
}
Index: closure/goog/net/channelrequest.js
Index: goog/net/channelrequest.js
===================================================================
--- closure/goog/net/channelrequest.js (revision 1850)
+++ closure/goog/net/channelrequest.js (working copy)
@@ -999,10 +999,20 @@
--- goog/net/channelrequest.js (revision 2519)
+++ goog/net/channelrequest.js (working copy)
@@ -1037,10 +1037,20 @@
goog.net.ChannelRequest.prototype.imgTagGet_ = function() {
var eltImg = new Image();
eltImg.src = this.baseUri_;
Expand Down

0 comments on commit da20464

Please sign in to comment.