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/v1_0/components-chromium/iron-meta/iron-meta-extracted.js

Issue 1287713002: [MD settings] merge polymer 1.0.11; hack for settings checkbox (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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 (function() {
2 2
3 (function() {
4
5 // monostate data 3 // monostate data
6 var metaDatas = {}; 4 var metaDatas = {};
7 var metaArrays = {}; 5 var metaArrays = {};
8 6
9 Polymer.IronMeta = Polymer({ 7 Polymer.IronMeta = Polymer({
10 8
11 is: 'iron-meta', 9 is: 'iron-meta',
12 10
13 properties: { 11 properties: {
14 12
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 * Retrieves meta data value by key. 251 * Retrieves meta data value by key.
254 * @param {string} key The key of the meta-data to be returned. 252 * @param {string} key The key of the meta-data to be returned.
255 * @return {*} 253 * @return {*}
256 */ 254 */
257 byKey: function(key) { 255 byKey: function(key) {
258 return this._metaData && this._metaData[key]; 256 return this._metaData && this._metaData[key];
259 } 257 }
260 258
261 }); 259 });
262 260
263 })(); 261 })();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698