| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2013 Google Inc. | 2 * Copyright 2013 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #ifndef SkDiffContext_DEFINED | 8 #ifndef SkDiffContext_DEFINED |
| 9 #define SkDiffContext_DEFINED | 9 #define SkDiffContext_DEFINED |
| 10 | 10 |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 // We use linked list for the records so that their pointers remain stable.
A resizable array | 113 // We use linked list for the records so that their pointers remain stable.
A resizable array |
| 114 // might change its pointers, which would make it harder for async diffs to
record their | 114 // might change its pointers, which would make it harder for async diffs to
record their |
| 115 // results. | 115 // results. |
| 116 DiffRecord * fRecords; | 116 DiffRecord * fRecords; |
| 117 | 117 |
| 118 SkImageDiffer** fDiffers; | 118 SkImageDiffer** fDiffers; |
| 119 int fDifferCount; | 119 int fDifferCount; |
| 120 }; | 120 }; |
| 121 | 121 |
| 122 #endif | 122 #endif |
| OLD | NEW |