| OLD | NEW |
| 1 /* | 1 /* |
| 2 Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> | 2 Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 2004, 2005 Rob Buis <buis@kde.org> | 3 2004, 2005 Rob Buis <buis@kde.org> |
| 4 Copyright (C) Research In Motion Limited 2010. All rights reserved. | 4 Copyright (C) Research In Motion Limited 2010. All rights reserved. |
| 5 | 5 |
| 6 Based on khtml code by: | 6 Based on khtml code by: |
| 7 Copyright (C) 2000-2003 Lars Knoll (knoll@kde.org) | 7 Copyright (C) 2000-2003 Lars Knoll (knoll@kde.org) |
| 8 (C) 2000 Antti Koivisto (koivisto@kde.org) | 8 (C) 2000 Antti Koivisto (koivisto@kde.org) |
| 9 (C) 2000-2003 Dirk Mueller (mueller@kde.org) | 9 (C) 2000-2003 Dirk Mueller (mueller@kde.org) |
| 10 (C) 2002-2003 Apple Computer, Inc. | 10 (C) 2002-2003 Apple Computer, Inc. |
| (...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 265 public: | 265 public: |
| 266 static PassRefPtr<StyleLayoutData> create() { return adoptRef(new StyleL
ayoutData); } | 266 static PassRefPtr<StyleLayoutData> create() { return adoptRef(new StyleL
ayoutData); } |
| 267 PassRefPtr<StyleLayoutData> copy() const; | 267 PassRefPtr<StyleLayoutData> copy() const; |
| 268 bool operator==(const StyleLayoutData&) const; | 268 bool operator==(const StyleLayoutData&) const; |
| 269 bool operator!=(const StyleLayoutData& other) const | 269 bool operator!=(const StyleLayoutData& other) const |
| 270 { | 270 { |
| 271 return !(*this == other); | 271 return !(*this == other); |
| 272 } | 272 } |
| 273 Length x; | 273 Length x; |
| 274 Length y; | 274 Length y; |
| 275 Length rx; |
| 276 Length ry; |
| 275 private: | 277 private: |
| 276 StyleLayoutData(); | 278 StyleLayoutData(); |
| 277 StyleLayoutData(const StyleLayoutData&); | 279 StyleLayoutData(const StyleLayoutData&); |
| 278 }; | 280 }; |
| 279 | 281 |
| 280 } // namespace blink | 282 } // namespace blink |
| 281 | 283 |
| 282 #endif // SVGLayoutStyleDefs_h | 284 #endif // SVGLayoutStyleDefs_h |
| OLD | NEW |