Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 // This Polymer element is used as a container for all the feedback | |
| 6 // elements. Based on a number of factors, it determines which elements | |
| 7 // to show and what will be submitted to the feedback servers. | |
| 8 Polymer({ | |
|
Dan Beam
2016/06/09 19:03:39
this doesn't really do much yet, and you don't act
apacible
2016/06/09 21:01:35
There are some feedback components that I plan to
| |
| 9 is: 'feedback-container', | |
| 10 | |
| 11 behaviors: [ | |
| 12 I18nBehavior, | |
| 13 ], | |
| 14 }); | |
| OLD | NEW |