| OLD | NEW |
| 1 /* | 1 /* |
| 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) | 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) |
| 3 * Copyright (C) 2004, 2005, 2006, 2008 Apple Inc. All rights reserved. | 3 * Copyright (C) 2004, 2005, 2006, 2008 Apple Inc. All rights reserved. |
| 4 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> | 4 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| 11 * This library is distributed in the hope that it will be useful, | 11 * This library is distributed in the hope that it will be useful, |
| 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 * Library General Public License for more details. | 14 * Library General Public License for more details. |
| 15 * | 15 * |
| 16 * You should have received a copy of the GNU Library General Public License | 16 * You should have received a copy of the GNU Library General Public License |
| 17 * along with this library; see the file COPYING.LIB. If not, write to | 17 * along with this library; see the file COPYING.LIB. If not, write to |
| 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 19 * Boston, MA 02110-1301, USA. | 19 * Boston, MA 02110-1301, USA. |
| 20 */ | 20 */ |
| 21 | 21 |
| 22 #ifndef CSSPrimitiveValue_h | 22 #ifndef SKY_ENGINE_CORE_CSS_CSSPRIMITIVEVALUE_H_ |
| 23 #define CSSPrimitiveValue_h | 23 #define SKY_ENGINE_CORE_CSS_CSSPRIMITIVEVALUE_H_ |
| 24 | 24 |
| 25 #include "gen/sky/core/CSSPropertyNames.h" | 25 #include "gen/sky/core/CSSPropertyNames.h" |
| 26 #include "gen/sky/core/CSSValueKeywords.h" | 26 #include "gen/sky/core/CSSValueKeywords.h" |
| 27 #include "sky/engine/core/css/CSSValue.h" | 27 #include "sky/engine/core/css/CSSValue.h" |
| 28 #include "sky/engine/platform/graphics/Color.h" | 28 #include "sky/engine/platform/graphics/Color.h" |
| 29 #include "sky/engine/wtf/Forward.h" | 29 #include "sky/engine/wtf/Forward.h" |
| 30 #include "sky/engine/wtf/MathExtras.h" | 30 #include "sky/engine/wtf/MathExtras.h" |
| 31 #include "sky/engine/wtf/PassRefPtr.h" | 31 #include "sky/engine/wtf/PassRefPtr.h" |
| 32 | 32 |
| 33 namespace blink { | 33 namespace blink { |
| (...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 388 Quad* quad; | 388 Quad* quad; |
| 389 } m_value; | 389 } m_value; |
| 390 }; | 390 }; |
| 391 | 391 |
| 392 typedef CSSPrimitiveValue::CSSLengthArray CSSLengthArray; | 392 typedef CSSPrimitiveValue::CSSLengthArray CSSLengthArray; |
| 393 | 393 |
| 394 DEFINE_CSS_VALUE_TYPE_CASTS(CSSPrimitiveValue, isPrimitiveValue()); | 394 DEFINE_CSS_VALUE_TYPE_CASTS(CSSPrimitiveValue, isPrimitiveValue()); |
| 395 | 395 |
| 396 } // namespace blink | 396 } // namespace blink |
| 397 | 397 |
| 398 #endif // CSSPrimitiveValue_h | 398 #endif // SKY_ENGINE_CORE_CSS_CSSPRIMITIVEVALUE_H_ |
| OLD | NEW |