| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) |
| 3 * (C) 2000 Antti Koivisto (koivisto@kde.org) | 3 * (C) 2000 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
| 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. | 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. |
| 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) | 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 static PassRefPtr<StyleRareNonInheritedData> create() { return adoptRef(new
StyleRareNonInheritedData); } | 62 static PassRefPtr<StyleRareNonInheritedData> create() { return adoptRef(new
StyleRareNonInheritedData); } |
| 63 PassRefPtr<StyleRareNonInheritedData> copy() const { return adoptRef(new Sty
leRareNonInheritedData(*this)); } | 63 PassRefPtr<StyleRareNonInheritedData> copy() const { return adoptRef(new Sty
leRareNonInheritedData(*this)); } |
| 64 ~StyleRareNonInheritedData(); | 64 ~StyleRareNonInheritedData(); |
| 65 | 65 |
| 66 #if ENABLE(XBL) | 66 #if ENABLE(XBL) |
| 67 bool bindingsEquivalent(const StyleRareNonInheritedData&) const; | 67 bool bindingsEquivalent(const StyleRareNonInheritedData&) const; |
| 68 #endif | 68 #endif |
| 69 | 69 |
| 70 bool operator==(const StyleRareNonInheritedData&) const; | 70 bool operator==(const StyleRareNonInheritedData&) const; |
| 71 bool operator!=(const StyleRareNonInheritedData& o) const { return !(*this =
= o); } | 71 bool operator!=(const StyleRareNonInheritedData& o) const { return !(*this =
= o); } |
| 72 | 72 |
| 73 bool contentDataEquivalent(const StyleRareNonInheritedData& o) const; |
| 73 bool shadowDataEquivalent(const StyleRareNonInheritedData& o) const; | 74 bool shadowDataEquivalent(const StyleRareNonInheritedData& o) const; |
| 74 bool reflectionDataEquivalent(const StyleRareNonInheritedData& o) const; | 75 bool reflectionDataEquivalent(const StyleRareNonInheritedData& o) const; |
| 75 bool animationDataEquivalent(const StyleRareNonInheritedData&) const; | 76 bool animationDataEquivalent(const StyleRareNonInheritedData&) const; |
| 76 bool transitionDataEquivalent(const StyleRareNonInheritedData&) const; | 77 bool transitionDataEquivalent(const StyleRareNonInheritedData&) const; |
| 77 | 78 |
| 78 int lineClamp; // An Apple extension. | 79 int lineClamp; // An Apple extension. |
| 79 #if ENABLE(DASHBOARD_SUPPORT) | 80 #if ENABLE(DASHBOARD_SUPPORT) |
| 80 Vector<StyleDashboardRegion> m_dashboardRegions; | 81 Vector<StyleDashboardRegion> m_dashboardRegions; |
| 81 #endif | 82 #endif |
| 82 float opacity; // Whether or not we're transparent. | 83 float opacity; // Whether or not we're transparent. |
| (...skipping 28 matching lines...) Expand all Loading... |
| 111 #endif | 112 #endif |
| 112 | 113 |
| 113 private: | 114 private: |
| 114 StyleRareNonInheritedData(); | 115 StyleRareNonInheritedData(); |
| 115 StyleRareNonInheritedData(const StyleRareNonInheritedData&); | 116 StyleRareNonInheritedData(const StyleRareNonInheritedData&); |
| 116 }; | 117 }; |
| 117 | 118 |
| 118 } // namespace WebCore | 119 } // namespace WebCore |
| 119 | 120 |
| 120 #endif // StyleRareNonInheritedData_h | 121 #endif // StyleRareNonInheritedData_h |
| OLD | NEW |