| Index: third_party/polymer/v1_0/components-chromium/neon-animation/neon-shared-element-animation-behavior-extracted.js
|
| diff --git a/third_party/polymer/v1_0/components-chromium/neon-animation/neon-shared-element-animation-behavior-extracted.js b/third_party/polymer/v1_0/components-chromium/neon-animation/neon-shared-element-animation-behavior-extracted.js
|
| index dd799aa91fc1a56f6bb68af3c0d8fc7c9ddd9443..361f0c0ce3f8ec898ebc9d46df778f2b7cfa8c42 100644
|
| --- a/third_party/polymer/v1_0/components-chromium/neon-animation/neon-shared-element-animation-behavior-extracted.js
|
| +++ b/third_party/polymer/v1_0/components-chromium/neon-animation/neon-shared-element-animation-behavior-extracted.js
|
| @@ -22,12 +22,12 @@
|
| var fromPage = config.fromPage;
|
| var toPage = config.toPage;
|
| if (!fromPage || !toPage) {
|
| - console.warn(this.is + ':', !fromPage ? 'fromPage' : 'toPage', 'is undefined!');
|
| + Polymer.Base._warn(this.is + ':', !fromPage ? 'fromPage' : 'toPage', 'is undefined!');
|
| return null;
|
| };
|
|
|
| if (!fromPage.sharedElements || !toPage.sharedElements) {
|
| - console.warn(this.is + ':', 'sharedElements are undefined for', !fromPage.sharedElements ? fromPage : toPage);
|
| + Polymer.Base._warn(this.is + ':', 'sharedElements are undefined for', !fromPage.sharedElements ? fromPage : toPage);
|
| return null;
|
| };
|
|
|
| @@ -35,7 +35,7 @@
|
| var to = toPage.sharedElements[config.id];
|
|
|
| if (!from || !to) {
|
| - console.warn(this.is + ':', 'sharedElement with id', config.id, 'not found in', !from ? fromPage : toPage);
|
| + Polymer.Base._warn(this.is + ':', 'sharedElement with id', config.id, 'not found in', !from ? fromPage : toPage);
|
| return null;
|
| }
|
|
|
|
|