| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 enum MaterialEdge { canvas, card, circle } | 5 enum MaterialEdge { canvas, card, circle } |
| 6 | 6 |
| 7 const Map<MaterialEdge, double> edges = const { | 7 const Map<MaterialEdge, double> edges = const { |
| 8 MaterialEdge.canvas: null, | 8 MaterialEdge.canvas: null, |
| 9 MaterialEdge.card: 2.0, | 9 MaterialEdge.card: 2.0, |
| 10 MaterialEdge.circle: null, | 10 MaterialEdge.circle: null, |
| 11 }; | 11 }; |
| OLD | NEW |