| 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 13 matching lines...) Expand all Loading... |
| 24 | 24 |
| 25 #ifndef StyleTransformData_h | 25 #ifndef StyleTransformData_h |
| 26 #define StyleTransformData_h | 26 #define StyleTransformData_h |
| 27 | 27 |
| 28 #include "core/style/StyleMotionData.h" | 28 #include "core/style/StyleMotionData.h" |
| 29 #include "core/style/TransformOrigin.h" | 29 #include "core/style/TransformOrigin.h" |
| 30 #include "platform/transforms/RotateTransformOperation.h" | 30 #include "platform/transforms/RotateTransformOperation.h" |
| 31 #include "platform/transforms/ScaleTransformOperation.h" | 31 #include "platform/transforms/ScaleTransformOperation.h" |
| 32 #include "platform/transforms/TransformOperations.h" | 32 #include "platform/transforms/TransformOperations.h" |
| 33 #include "platform/transforms/TranslateTransformOperation.h" | 33 #include "platform/transforms/TranslateTransformOperation.h" |
| 34 #include "wtf/PassRefPtr.h" | 34 #include "platform/wtf/PassRefPtr.h" |
| 35 #include "wtf/RefCounted.h" | 35 #include "platform/wtf/RefCounted.h" |
| 36 | 36 |
| 37 namespace blink { | 37 namespace blink { |
| 38 | 38 |
| 39 class StyleTransformData : public RefCounted<StyleTransformData> { | 39 class StyleTransformData : public RefCounted<StyleTransformData> { |
| 40 public: | 40 public: |
| 41 static PassRefPtr<StyleTransformData> Create() { | 41 static PassRefPtr<StyleTransformData> Create() { |
| 42 return AdoptRef(new StyleTransformData); | 42 return AdoptRef(new StyleTransformData); |
| 43 } | 43 } |
| 44 PassRefPtr<StyleTransformData> Copy() const { | 44 PassRefPtr<StyleTransformData> Copy() const { |
| 45 return AdoptRef(new StyleTransformData(*this)); | 45 return AdoptRef(new StyleTransformData(*this)); |
| (...skipping 11 matching lines...) Expand all Loading... |
| 57 RefPtr<ScaleTransformOperation> scale_; | 57 RefPtr<ScaleTransformOperation> scale_; |
| 58 | 58 |
| 59 private: | 59 private: |
| 60 StyleTransformData(); | 60 StyleTransformData(); |
| 61 StyleTransformData(const StyleTransformData&); | 61 StyleTransformData(const StyleTransformData&); |
| 62 }; | 62 }; |
| 63 | 63 |
| 64 } // namespace blink | 64 } // namespace blink |
| 65 | 65 |
| 66 #endif // StyleTransformData_h | 66 #endif // StyleTransformData_h |
| OLD | NEW |