| 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, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserv
ed. | 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserv
ed. |
| 6 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> | 6 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.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 16 matching lines...) Expand all Loading... |
| 27 | 27 |
| 28 #include "FontFamilyNames.h" | 28 #include "FontFamilyNames.h" |
| 29 #include "core/platform/graphics/FontFamily.h" | 29 #include "core/platform/graphics/FontFamily.h" |
| 30 #include "core/platform/graphics/FontFeatureSettings.h" | 30 #include "core/platform/graphics/FontFeatureSettings.h" |
| 31 #include "core/platform/graphics/FontOrientation.h" | 31 #include "core/platform/graphics/FontOrientation.h" |
| 32 #include "core/platform/graphics/FontSmoothingMode.h" | 32 #include "core/platform/graphics/FontSmoothingMode.h" |
| 33 #include "core/platform/graphics/FontTraitsMask.h" | 33 #include "core/platform/graphics/FontTraitsMask.h" |
| 34 #include "core/platform/graphics/FontWidthVariant.h" | 34 #include "core/platform/graphics/FontWidthVariant.h" |
| 35 #include "core/platform/graphics/TextRenderingMode.h" | 35 #include "core/platform/graphics/TextRenderingMode.h" |
| 36 #include "core/platform/text/NonCJKGlyphOrientation.h" | 36 #include "core/platform/text/NonCJKGlyphOrientation.h" |
| 37 #include <wtf/MathExtras.h> | 37 #include "wtf/MathExtras.h" |
| 38 | 38 |
| 39 #include <wtf/RefPtr.h> | 39 #include "wtf/RefPtr.h" |
| 40 | 40 |
| 41 namespace WebCore { | 41 namespace WebCore { |
| 42 | 42 |
| 43 using namespace FontFamilyNames; | 43 using namespace FontFamilyNames; |
| 44 | 44 |
| 45 enum FontWeight { | 45 enum FontWeight { |
| 46 FontWeight100, | 46 FontWeight100, |
| 47 FontWeight200, | 47 FontWeight200, |
| 48 FontWeight300, | 48 FontWeight300, |
| 49 FontWeight400, | 49 FontWeight400, |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 && m_orientation == other.m_orientation | 222 && m_orientation == other.m_orientation |
| 223 && m_nonCJKGlyphOrientation == other.m_nonCJKGlyphOrientation | 223 && m_nonCJKGlyphOrientation == other.m_nonCJKGlyphOrientation |
| 224 && m_widthVariant == other.m_widthVariant | 224 && m_widthVariant == other.m_widthVariant |
| 225 && m_script == other.m_script | 225 && m_script == other.m_script |
| 226 && m_featureSettings == other.m_featureSettings; | 226 && m_featureSettings == other.m_featureSettings; |
| 227 } | 227 } |
| 228 | 228 |
| 229 } | 229 } |
| 230 | 230 |
| 231 #endif | 231 #endif |
| OLD | NEW |