| 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 15 matching lines...) Expand all Loading... |
| 26 #define StyleRareInheritedData_h | 26 #define StyleRareInheritedData_h |
| 27 | 27 |
| 28 #include "core/CoreExport.h" | 28 #include "core/CoreExport.h" |
| 29 #include "core/css/StyleAutoColor.h" | 29 #include "core/css/StyleAutoColor.h" |
| 30 #include "core/css/StyleColor.h" | 30 #include "core/css/StyleColor.h" |
| 31 #include "core/style/TextSizeAdjust.h" | 31 #include "core/style/TextSizeAdjust.h" |
| 32 #include "platform/Length.h" | 32 #include "platform/Length.h" |
| 33 #include "platform/graphics/Color.h" | 33 #include "platform/graphics/Color.h" |
| 34 #include "platform/heap/Handle.h" | 34 #include "platform/heap/Handle.h" |
| 35 #include "platform/text/TabSize.h" | 35 #include "platform/text/TabSize.h" |
| 36 #include "wtf/PassRefPtr.h" | 36 #include "platform/wtf/PassRefPtr.h" |
| 37 #include "wtf/RefCounted.h" | 37 #include "platform/wtf/RefCounted.h" |
| 38 #include "wtf/RefVector.h" | 38 #include "platform/wtf/RefVector.h" |
| 39 #include "wtf/text/AtomicString.h" | 39 #include "platform/wtf/text/AtomicString.h" |
| 40 | 40 |
| 41 namespace blink { | 41 namespace blink { |
| 42 | 42 |
| 43 class AppliedTextDecoration; | 43 class AppliedTextDecoration; |
| 44 class CursorData; | 44 class CursorData; |
| 45 class QuotesData; | 45 class QuotesData; |
| 46 class ShadowList; | 46 class ShadowList; |
| 47 class StyleImage; | 47 class StyleImage; |
| 48 class StyleInheritedVariables; | 48 class StyleInheritedVariables; |
| 49 | 49 |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 TextSizeAdjust text_size_adjust_; | 240 TextSizeAdjust text_size_adjust_; |
| 241 | 241 |
| 242 private: | 242 private: |
| 243 StyleRareInheritedData(); | 243 StyleRareInheritedData(); |
| 244 StyleRareInheritedData(const StyleRareInheritedData&); | 244 StyleRareInheritedData(const StyleRareInheritedData&); |
| 245 }; | 245 }; |
| 246 | 246 |
| 247 } // namespace blink | 247 } // namespace blink |
| 248 | 248 |
| 249 #endif // StyleRareInheritedData_h | 249 #endif // StyleRareInheritedData_h |
| OLD | NEW |