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

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

Issue 2774823002: Remove FrameHost class (Closed)
Patch Set: Rebase Created 3 years, 8 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 #include "core/css/resolver/StyleResolverState.h" 23 #include "core/css/resolver/StyleResolverState.h"
24 24
25 #include "core/animation/css/CSSAnimations.h" 25 #include "core/animation/css/CSSAnimations.h"
26 #include "core/css/StylePropertySet.h" 26 #include "core/css/StylePropertySet.h"
27 #include "core/dom/Node.h" 27 #include "core/dom/Node.h"
28 #include "core/dom/NodeComputedStyle.h" 28 #include "core/dom/NodeComputedStyle.h"
29 #include "core/frame/FrameHost.h"
30 #include "core/layout/api/LayoutViewItem.h" 29 #include "core/layout/api/LayoutViewItem.h"
31 30
32 namespace blink { 31 namespace blink {
33 32
34 StyleResolverState::StyleResolverState( 33 StyleResolverState::StyleResolverState(
35 Document& document, 34 Document& document,
36 const ElementResolveContext& elementContext, 35 const ElementResolveContext& elementContext,
37 const ComputedStyle* parentStyle, 36 const ComputedStyle* parentStyle,
38 const ComputedStyle* layoutParentStyle) 37 const ComputedStyle* layoutParentStyle)
39 : m_elementContext(elementContext), 38 : m_elementContext(elementContext),
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 HeapHashMap<CSSPropertyID, Member<const CSSValue>>* map = 122 HeapHashMap<CSSPropertyID, Member<const CSSValue>>* map =
124 m_parsedPropertiesForPendingSubstitutionCache.at(&value); 123 m_parsedPropertiesForPendingSubstitutionCache.at(&value);
125 if (!map) { 124 if (!map) {
126 map = new HeapHashMap<CSSPropertyID, Member<const CSSValue>>; 125 map = new HeapHashMap<CSSPropertyID, Member<const CSSValue>>;
127 m_parsedPropertiesForPendingSubstitutionCache.set(&value, map); 126 m_parsedPropertiesForPendingSubstitutionCache.set(&value, map);
128 } 127 }
129 return *map; 128 return *map;
130 } 129 }
131 130
132 } // namespace blink 131 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698