| 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 11 matching lines...) Expand all Loading... |
| 22 * | 22 * |
| 23 */ | 23 */ |
| 24 | 24 |
| 25 #ifndef BorderData_h | 25 #ifndef BorderData_h |
| 26 #define BorderData_h | 26 #define BorderData_h |
| 27 | 27 |
| 28 #include "core/style/BorderValue.h" | 28 #include "core/style/BorderValue.h" |
| 29 #include "core/style/NinePieceImage.h" | 29 #include "core/style/NinePieceImage.h" |
| 30 #include "platform/LengthSize.h" | 30 #include "platform/LengthSize.h" |
| 31 #include "platform/geometry/IntRect.h" | 31 #include "platform/geometry/IntRect.h" |
| 32 #include "wtf/Allocator.h" | 32 #include "platform/wtf/Allocator.h" |
| 33 | 33 |
| 34 namespace blink { | 34 namespace blink { |
| 35 | 35 |
| 36 class BorderData { | 36 class BorderData { |
| 37 DISALLOW_NEW(); | 37 DISALLOW_NEW(); |
| 38 friend class ComputedStyle; | 38 friend class ComputedStyle; |
| 39 | 39 |
| 40 public: | 40 public: |
| 41 BorderData() | 41 BorderData() |
| 42 : top_left_(Length(0, kFixed), Length(0, kFixed)), | 42 : top_left_(Length(0, kFixed), Length(0, kFixed)), |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 | 141 |
| 142 LengthSize top_left_; | 142 LengthSize top_left_; |
| 143 LengthSize top_right_; | 143 LengthSize top_right_; |
| 144 LengthSize bottom_left_; | 144 LengthSize bottom_left_; |
| 145 LengthSize bottom_right_; | 145 LengthSize bottom_right_; |
| 146 }; | 146 }; |
| 147 | 147 |
| 148 } // namespace blink | 148 } // namespace blink |
| 149 | 149 |
| 150 #endif // BorderData_h | 150 #endif // BorderData_h |
| OLD | NEW |