| 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 13 matching lines...) Expand all Loading... |
| 24 #define CachedUAStyle_h | 24 #define CachedUAStyle_h |
| 25 | 25 |
| 26 #include "core/style/ComputedStyle.h" | 26 #include "core/style/ComputedStyle.h" |
| 27 #include "wtf/Allocator.h" | 27 #include "wtf/Allocator.h" |
| 28 #include "wtf/Noncopyable.h" | 28 #include "wtf/Noncopyable.h" |
| 29 #include "wtf/PtrUtil.h" | 29 #include "wtf/PtrUtil.h" |
| 30 #include <memory> | 30 #include <memory> |
| 31 | 31 |
| 32 namespace blink { | 32 namespace blink { |
| 33 | 33 |
| 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 WTF::WrapUnique(new CachedUAStyle(style)); | 44 return WTF::WrapUnique(new CachedUAStyle(style)); |
| 45 } | 45 } |
| 46 | 46 |
| 47 BorderData border; | 47 BorderData border; |
| 48 FillLayer background_layers; | 48 FillLayer background_layers; |
| 49 StyleColor background_color; | 49 StyleColor background_color; |
| 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 background_layers(style->BackgroundLayers()), | 54 background_layers(style->BackgroundLayers()), |
| 55 background_color(style->BackgroundColor()) {} | 55 background_color(style->BackgroundColor()) {} |
| 56 }; | 56 }; |
| 57 | 57 |
| 58 } // namespace blink | 58 } // namespace blink |
| 59 | 59 |
| 60 #endif // CachedUAStyle_h | 60 #endif // CachedUAStyle_h |
| OLD | NEW |