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