OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google, Inc. | 2 * Copyright (C) 2013 Google, Inc. |
3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. | 4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. |
5 * All rights reserved. | 5 * All rights reserved. |
6 * | 6 * |
7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
(...skipping 23 matching lines...) Expand all Loading... |
34 // LayoutTheme::adjustStyle wants the background and borders | 34 // LayoutTheme::adjustStyle wants the background and borders |
35 // as specified by the UA sheets, excluding any author rules. | 35 // as specified by the UA sheets, excluding any author rules. |
36 // We use this class to cache those values during | 36 // We use this class to cache those values during |
37 // applyMatchedProperties for later use during adjustComputedStyle. | 37 // applyMatchedProperties for later use during adjustComputedStyle. |
38 class CachedUAStyle { | 38 class CachedUAStyle { |
39 USING_FAST_MALLOC(CachedUAStyle); | 39 USING_FAST_MALLOC(CachedUAStyle); |
40 WTF_MAKE_NONCOPYABLE(CachedUAStyle); | 40 WTF_MAKE_NONCOPYABLE(CachedUAStyle); |
41 | 41 |
42 public: | 42 public: |
43 static std::unique_ptr<CachedUAStyle> create(const ComputedStyle* style) { | 43 static std::unique_ptr<CachedUAStyle> create(const ComputedStyle* style) { |
44 return wrapUnique(new CachedUAStyle(style)); | 44 return WTF::wrapUnique(new CachedUAStyle(style)); |
45 } | 45 } |
46 | 46 |
47 BorderData border; | 47 BorderData border; |
48 FillLayer backgroundLayers; | 48 FillLayer backgroundLayers; |
49 StyleColor backgroundColor; | 49 StyleColor backgroundColor; |
50 | 50 |
51 private: | 51 private: |
52 explicit CachedUAStyle(const ComputedStyle* style) | 52 explicit CachedUAStyle(const ComputedStyle* style) |
53 : border(style->border()), | 53 : border(style->border()), |
54 backgroundLayers(style->backgroundLayers()), | 54 backgroundLayers(style->backgroundLayers()), |
55 backgroundColor(style->backgroundColor()) {} | 55 backgroundColor(style->backgroundColor()) {} |
56 }; | 56 }; |
57 | 57 |
58 } // namespace blink | 58 } // namespace blink |
59 | 59 |
60 #endif // CachedUAStyle_h | 60 #endif // CachedUAStyle_h |
OLD | NEW |