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

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

Issue 2700123003: DO NOT COMMIT: Results of running old (current) clang-format on Blink (Closed)
Patch Set: Created 3 years, 10 months 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.
11 * 11 *
12 * This library is distributed in the hope that it will be useful, 12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Library General Public License for more details. 15 * Library General Public License for more details.
16 * 16 *
17 * You should have received a copy of the GNU Library General Public License 17 * You should have received a copy of the GNU Library General Public License
18 * along with this library; see the file COPYING.LIB. If not, write to 18 * along with this library; see the file COPYING.LIB. If not, write to
19 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 19 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 * Boston, MA 02110-1301, USA. 20 * Boston, MA 02110-1301, USA.
21 */ 21 */
22 22
23 #ifndef CachedUAStyle_h 23 #ifndef CachedUAStyle_h
24 #define CachedUAStyle_h 24 #define CachedUAStyle_h
25 25
26 #include <memory>
26 #include "core/style/ComputedStyle.h" 27 #include "core/style/ComputedStyle.h"
27 #include "wtf/Allocator.h" 28 #include "wtf/Allocator.h"
28 #include "wtf/Noncopyable.h" 29 #include "wtf/Noncopyable.h"
29 #include "wtf/PtrUtil.h" 30 #include "wtf/PtrUtil.h"
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);
(...skipping 10 matching lines...) Expand all
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/style/BorderValue.h ('k') | third_party/WebKit/Source/core/style/ClipPathOperation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698