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

Side by Side Diff: third_party/WebKit/Source/core/css/resolver/StyleResolverState.h

Issue 2940933003: DO NOT SUBMIT results of new clang-format (Closed)
Patch Set: Created 3 years, 6 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) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. 3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc.
4 * All rights reserved. 4 * All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
11 * This library is distributed in the hope that it will be useful, 11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details. 14 * Library General Public License for more details.
15 * 15 *
16 * You should have received a copy of the GNU Library General Public License 16 * You should have received a copy of the GNU Library General Public License
17 * along with this library; see the file COPYING.LIB. If not, write to 17 * along with this library; see the file COPYING.LIB. If not, write to
18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 * Boston, MA 02110-1301, USA. 19 * Boston, MA 02110-1301, USA.
20 * 20 *
21 */ 21 */
22 22
23 #ifndef StyleResolverState_h 23 #ifndef StyleResolverState_h
24 #define StyleResolverState_h 24 #define StyleResolverState_h
25 25
26 #include <memory>
26 #include "core/CSSPropertyNames.h" 27 #include "core/CSSPropertyNames.h"
27 #include "core/CoreExport.h" 28 #include "core/CoreExport.h"
28 #include "core/animation/css/CSSAnimationUpdate.h" 29 #include "core/animation/css/CSSAnimationUpdate.h"
29 #include "core/css/CSSPendingSubstitutionValue.h" 30 #include "core/css/CSSPendingSubstitutionValue.h"
30 #include "core/css/CSSToLengthConversionData.h" 31 #include "core/css/CSSToLengthConversionData.h"
31 #include "core/css/resolver/CSSToStyleMap.h" 32 #include "core/css/resolver/CSSToStyleMap.h"
32 #include "core/css/resolver/ElementResolveContext.h" 33 #include "core/css/resolver/ElementResolveContext.h"
33 #include "core/css/resolver/ElementStyleResources.h" 34 #include "core/css/resolver/ElementStyleResources.h"
34 #include "core/css/resolver/FontBuilder.h" 35 #include "core/css/resolver/FontBuilder.h"
35 #include "core/dom/Document.h" 36 #include "core/dom/Document.h"
36 #include "core/dom/Element.h" 37 #include "core/dom/Element.h"
37 #include "core/style/CachedUAStyle.h" 38 #include "core/style/CachedUAStyle.h"
38 #include "core/style/ComputedStyle.h" 39 #include "core/style/ComputedStyle.h"
39 #include <memory>
40 40
41 namespace blink { 41 namespace blink {
42 42
43 class FontDescription; 43 class FontDescription;
44 44
45 class CORE_EXPORT StyleResolverState { 45 class CORE_EXPORT StyleResolverState {
46 STACK_ALLOCATED(); 46 STACK_ALLOCATED();
47 WTF_MAKE_NONCOPYABLE(StyleResolverState); 47 WTF_MAKE_NONCOPYABLE(StyleResolverState);
48 48
49 public: 49 public:
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 254
255 mutable HeapHashMap< 255 mutable HeapHashMap<
256 Member<const CSSPendingSubstitutionValue>, 256 Member<const CSSPendingSubstitutionValue>,
257 Member<HeapHashMap<CSSPropertyID, Member<const CSSValue>>>> 257 Member<HeapHashMap<CSSPropertyID, Member<const CSSValue>>>>
258 parsed_properties_for_pending_substitution_cache_; 258 parsed_properties_for_pending_substitution_cache_;
259 }; 259 };
260 260
261 } // namespace blink 261 } // namespace blink
262 262
263 #endif // StyleResolverState_h 263 #endif // StyleResolverState_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698