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

Side by Side Diff: third_party/polymer/v0_8/components-chromium/iron-ajax/iron-request-extracted.js

Issue 1162963002: Revert "Rename polymer and cr_elements v0_8 to v1_0" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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 Polymer({ 2 Polymer({
3 is: 'iron-request', 3 is: 'iron-request',
4 4
5 properties: { 5 properties: {
6 6
7 /** 7 /**
8 * A reference to the XMLHttpRequest instance used to generate the 8 * A reference to the XMLHttpRequest instance used to generate the
9 * network request. 9 * network request.
10 * 10 *
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 } catch (e) { 232 } catch (e) {
233 this.rejectCompletes(new Error('Could not parse response. ' + e.message) ); 233 this.rejectCompletes(new Error('Could not parse response. ' + e.message) );
234 } 234 }
235 }, 235 },
236 236
237 abort: function () { 237 abort: function () {
238 this._setAborted(true); 238 this._setAborted(true);
239 this.xhr.abort(); 239 this.xhr.abort();
240 } 240 }
241 }); 241 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698