| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 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 CANVAS_DIMENSIONS, 30, | 5 CANVAS_DIMENSIONS, 30, |
| 6 | 6 |
| 7 // The outer layer of the arrows is drawn in transparent-ish solid blue. | 7 // The outer layer of the arrows is drawn in transparent-ish solid blue. |
| 8 STROKE, 3.5, | 8 STROKE, 3.5, |
| 9 PATH_COLOR_ARGB, 0x40, 0x00, 0x00, 0xff, | 9 PATH_COLOR_ARGB, 0x40, 0x00, 0x00, 0xff, |
| 10 MOVE_TO, 11, 12, | 10 MOVE_TO, 11, 12, |
| 11 LINE_TO, 15, 8, | 11 LINE_TO, 15, 8, |
| 12 LINE_TO, 19, 12, | 12 LINE_TO, 19, 12, |
| 13 MOVE_TO, 11, 18, | 13 MOVE_TO, 11, 18, |
| 14 LINE_TO, 15, 22, | 14 LINE_TO, 15, 22, |
| 15 LINE_TO, 19, 18, | 15 LINE_TO, 19, 18, |
| 16 | 16 |
| 17 // The inner layer is a narrower stroke of solid white. | 17 // The inner layer is a narrower stroke of solid white. |
| 18 NEW_PATH, | 18 NEW_PATH, |
| 19 STROKE, 2, | 19 STROKE, 2, |
| 20 PATH_COLOR_ARGB, 0xff, 0xff, 0xff, 0xff, | 20 PATH_COLOR_ARGB, 0xff, 0xff, 0xff, 0xff, |
| 21 MOVE_TO, 11, 12, | 21 MOVE_TO, 11, 12, |
| 22 LINE_TO, 15, 8, | 22 LINE_TO, 15, 8, |
| 23 LINE_TO, 19, 12, | 23 LINE_TO, 19, 12, |
| 24 MOVE_TO, 11, 18, | 24 MOVE_TO, 11, 18, |
| 25 LINE_TO, 15, 22, | 25 LINE_TO, 15, 22, |
| 26 LINE_TO, 19, 18, | 26 LINE_TO, 19, 18, |
| 27 END | 27 END |
| OLD | NEW |