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

Side by Side Diff: third_party/polymer/v0_8/components-chromium/iron-localstorage/iron-localstorage-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 2
3 Polymer({ 3 Polymer({
4 is: 'iron-localstorage', 4 is: 'iron-localstorage',
5 5
6 /** 6 /**
7 * Fired when value loads from localStorage. 7 * Fired when value loads from localStorage.
8 * 8 *
9 * @param {Object} detail 9 * @param {Object} detail
10 * @param {Boolean} detail.externalChange true if change occured in differen t window 10 * @param {Boolean} detail.externalChange true if change occured in differen t window
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 } 146 }
147 catch(ex) { 147 catch(ex) {
148 // Happens in Safari incognito mode, 148 // Happens in Safari incognito mode,
149 this.errorMessage = ex.message; 149 this.errorMessage = ex.message;
150 console.error("localStorage could not be saved. Safari incoginito mode?" , ex); 150 console.error("localStorage could not be saved. Safari incoginito mode?" , ex);
151 } 151 }
152 } 152 }
153 153
154 }); 154 });
155 155
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698