| 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 27 matching lines...) Expand all Loading... |
| 38 | 38 |
| 39 LengthPoint lengthPoints[2]; | 39 LengthPoint lengthPoints[2]; |
| 40 LineClampValue lineClamps; | 40 LineClampValue lineClamps; |
| 41 DraggableRegionMode draggableRegions; | 41 DraggableRegionMode draggableRegions; |
| 42 | 42 |
| 43 void* dataRefs[8]; | 43 void* dataRefs[8]; |
| 44 DataPersistent<void*> dataPersistents[2]; | 44 DataPersistent<void*> dataPersistents[2]; |
| 45 void* ownPtrs[4]; | 45 void* ownPtrs[4]; |
| 46 Persistent<void*> persistentHandles[2]; | 46 Persistent<void*> persistentHandles[2]; |
| 47 void* refPtrs[2]; | 47 void* refPtrs[2]; |
| 48 void* uniquePtrs[1]; |
| 48 | 49 |
| 49 FillLayer fillLayers; | 50 FillLayer fillLayers; |
| 50 NinePieceImage ninePieces; | 51 NinePieceImage ninePieces; |
| 51 FloatSize floatSize; | 52 FloatSize floatSize; |
| 52 Length lengths; | 53 Length lengths; |
| 53 | 54 |
| 54 StyleColor styleColors[8]; | 55 StyleColor styleColors[8]; |
| 55 | 56 |
| 56 Vector<String> m_callbackSelectors; | 57 Vector<String> m_callbackSelectors; |
| 57 | 58 |
| (...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 { | 350 { |
| 350 return dataEquivalent(m_shapeOutside, o.m_shapeOutside); | 351 return dataEquivalent(m_shapeOutside, o.m_shapeOutside); |
| 351 } | 352 } |
| 352 | 353 |
| 353 bool StyleRareNonInheritedData::clipPathDataEquivalent(const StyleRareNonInherit
edData& o) const | 354 bool StyleRareNonInheritedData::clipPathDataEquivalent(const StyleRareNonInherit
edData& o) const |
| 354 { | 355 { |
| 355 return dataEquivalent(m_clipPath, o.m_clipPath); | 356 return dataEquivalent(m_clipPath, o.m_clipPath); |
| 356 } | 357 } |
| 357 | 358 |
| 358 } // namespace blink | 359 } // namespace blink |
| OLD | NEW |