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

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

Issue 2542203004: blink: Cleanup class/struct forward declarations (Closed)
Patch Set: 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) 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 namespace blink { 44 namespace blink {
45 45
46 class AnimatableValue; 46 class AnimatableValue;
47 class CSSRuleList; 47 class CSSRuleList;
48 class CSSStyleSheet; 48 class CSSStyleSheet;
49 class CSSValue; 49 class CSSValue;
50 class Document; 50 class Document;
51 class Element; 51 class Element;
52 class Interpolation; 52 class Interpolation;
53 class MatchResult; 53 class MatchResult;
54 class MediaQueryEvaluator;
55 class RuleSet; 54 class RuleSet;
56 class StylePropertySet; 55 class StylePropertySet;
57 class StyleRule;
58 class StyleRuleUsageTracker; 56 class StyleRuleUsageTracker;
59 57
60 enum StyleSharingBehavior { 58 enum StyleSharingBehavior {
61 AllowStyleSharing, 59 AllowStyleSharing,
62 DisallowStyleSharing, 60 DisallowStyleSharing,
63 }; 61 };
64 62
65 enum RuleMatchingBehavior { MatchAllRules, MatchAllRulesExcludingSMIL }; 63 enum RuleMatchingBehavior { MatchAllRules, MatchAllRulesExcludingSMIL };
66 64
67 const unsigned styleSharingListSize = 15; 65 const unsigned styleSharingListSize = 15;
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 bool m_printMediaType = false; 281 bool m_printMediaType = false;
284 282
285 unsigned m_styleSharingDepth = 0; 283 unsigned m_styleSharingDepth = 0;
286 HeapVector<Member<StyleSharingList>, styleSharingMaxDepth> 284 HeapVector<Member<StyleSharingList>, styleSharingMaxDepth>
287 m_styleSharingLists; 285 m_styleSharingLists;
288 }; 286 };
289 287
290 } // namespace blink 288 } // namespace blink
291 289
292 #endif // StyleResolver_h 290 #endif // StyleResolver_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/resolver/FontBuilder.h ('k') | third_party/WebKit/Source/core/dom/Node.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698