Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(419)

Side by Side Diff: third_party/WebKit/Source/core/style/CachedUAStyle.h

Issue 2547053003: s/ passed(...) / WTF::passed(...) / to avoid future ambiguity w/ base::Passed. (Closed)
Patch Set: Rebasing... Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/paint/VideoPainterTest.cpp ('k') | third_party/WebKit/Source/core/style/ClipPathOperation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698