| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 #include "wtf/PassRefPtr.h" | 43 #include "wtf/PassRefPtr.h" |
| 44 #include "wtf/RefCounted.h" | 44 #include "wtf/RefCounted.h" |
| 45 #include "wtf/Vector.h" | 45 #include "wtf/Vector.h" |
| 46 #include <memory> | 46 #include <memory> |
| 47 | 47 |
| 48 namespace blink { | 48 namespace blink { |
| 49 | 49 |
| 50 class ContentData; | 50 class ContentData; |
| 51 class CSSAnimationData; | 51 class CSSAnimationData; |
| 52 class CSSTransitionData; | 52 class CSSTransitionData; |
| 53 class LengthSize; | |
| 54 class ShadowList; | 53 class ShadowList; |
| 55 class StyleDeprecatedFlexibleBoxData; | 54 class StyleDeprecatedFlexibleBoxData; |
| 56 class StyleFilterData; | 55 class StyleFilterData; |
| 57 class StyleFlexibleBoxData; | 56 class StyleFlexibleBoxData; |
| 58 class StyleGridData; | 57 class StyleGridData; |
| 59 class StyleGridItemData; | 58 class StyleGridItemData; |
| 60 class StyleMultiColData; | 59 class StyleMultiColData; |
| 61 class StyleNonInheritedVariables; | 60 class StyleNonInheritedVariables; |
| 62 class StyleReflection; | 61 class StyleReflection; |
| 63 class StyleTransformData; | 62 class StyleTransformData; |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 unsigned m_hasAuthorBorder : 1; // Whether there is a author-defined border. | 236 unsigned m_hasAuthorBorder : 1; // Whether there is a author-defined border. |
| 238 | 237 |
| 239 private: | 238 private: |
| 240 StyleRareNonInheritedData(); | 239 StyleRareNonInheritedData(); |
| 241 StyleRareNonInheritedData(const StyleRareNonInheritedData&); | 240 StyleRareNonInheritedData(const StyleRareNonInheritedData&); |
| 242 }; | 241 }; |
| 243 | 242 |
| 244 } // namespace blink | 243 } // namespace blink |
| 245 | 244 |
| 246 #endif // StyleRareNonInheritedData_h | 245 #endif // StyleRareNonInheritedData_h |
| OLD | NEW |