| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Antti Koivisto (koivisto@kde.org) | 2 * Copyright (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 | 21 |
| 22 #include "core/style/FillLayer.h" | 22 #include "core/style/FillLayer.h" |
| 23 | 23 |
| 24 #include "core/style/DataEquivalency.h" | 24 #include "core/style/DataEquivalency.h" |
| 25 | 25 |
| 26 namespace blink { | 26 namespace blink { |
| 27 | 27 |
| 28 struct SameSizeAsFillLayer { | 28 struct SameSizeAsFillLayer { |
| 29 FillLayer* m_next; | 29 FillLayer* m_next; |
| 30 | 30 |
| 31 RefPtrWillBePersistent<StyleImage> m_image; | 31 Persistent<StyleImage> m_image; |
| 32 | 32 |
| 33 Length m_xPosition; | 33 Length m_xPosition; |
| 34 Length m_yPosition; | 34 Length m_yPosition; |
| 35 | 35 |
| 36 LengthSize m_sizeLength; | 36 LengthSize m_sizeLength; |
| 37 | 37 |
| 38 unsigned m_bitfields1; | 38 unsigned m_bitfields1; |
| 39 unsigned m_bitfields2; | 39 unsigned m_bitfields2; |
| 40 }; | 40 }; |
| 41 | 41 |
| (...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 403 { | 403 { |
| 404 for (; layer1 && layer2; layer1 = layer1->next(), layer2 = layer2->next()) { | 404 for (; layer1 && layer2; layer1 = layer1->next(), layer2 = layer2->next()) { |
| 405 if (!layerImagesIdentical(*layer1, *layer2)) | 405 if (!layerImagesIdentical(*layer1, *layer2)) |
| 406 return false; | 406 return false; |
| 407 } | 407 } |
| 408 | 408 |
| 409 return !layer1 && !layer2; | 409 return !layer1 && !layer2; |
| 410 } | 410 } |
| 411 | 411 |
| 412 } // namespace blink | 412 } // namespace blink |
| OLD | NEW |