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

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

Issue 2463703003: blink: Cleanup core class forward declarations (Closed)
Patch Set: Remove redundant empty lines Created 4 years, 1 month 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 *
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 #include "wtf/ListHashSet.h" 42 #include "wtf/ListHashSet.h"
43 #include "wtf/RefPtr.h" 43 #include "wtf/RefPtr.h"
44 #include "wtf/Vector.h" 44 #include "wtf/Vector.h"
45 45
46 namespace blink { 46 namespace blink {
47 47
48 class AnimatableValue; 48 class AnimatableValue;
49 class CSSRuleList; 49 class CSSRuleList;
50 class CSSStyleSheet; 50 class CSSStyleSheet;
51 class CSSValue; 51 class CSSValue;
52 class ContainerNode;
53 class Document; 52 class Document;
54 class Element; 53 class Element;
55 class Interpolation; 54 class Interpolation;
56 class MatchResult; 55 class MatchResult;
57 class MediaQueryEvaluator; 56 class MediaQueryEvaluator;
58 class ScopedStyleResolver;
59 class StylePropertySet; 57 class StylePropertySet;
60 class StyleRule; 58 class StyleRule;
61 59
62 enum StyleSharingBehavior { 60 enum StyleSharingBehavior {
63 AllowStyleSharing, 61 AllowStyleSharing,
64 DisallowStyleSharing, 62 DisallowStyleSharing,
65 }; 63 };
66 64
67 enum RuleMatchingBehavior { MatchAllRules, MatchAllRulesExcludingSMIL }; 65 enum RuleMatchingBehavior { MatchAllRules, MatchAllRulesExcludingSMIL };
68 66
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 bool m_printMediaType; 262 bool m_printMediaType;
265 263
266 unsigned m_styleSharingDepth; 264 unsigned m_styleSharingDepth;
267 HeapVector<Member<StyleSharingList>, styleSharingMaxDepth> 265 HeapVector<Member<StyleSharingList>, styleSharingMaxDepth>
268 m_styleSharingLists; 266 m_styleSharingLists;
269 }; 267 };
270 268
271 } // namespace blink 269 } // namespace blink
272 270
273 #endif // StyleResolver_h 271 #endif // StyleResolver_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/resolver/ScopedStyleResolver.h ('k') | third_party/WebKit/Source/core/dom/AXObjectCache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698