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

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

Issue 2761853003: LinkedStack.h is no longer used, remove it (Closed)
Patch Set: rebase on master, avoid spurious patch dep Created 3 years, 9 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/heap/HeapLinkedStack.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 15 matching lines...) Expand all
26 #include "core/CoreExport.h" 26 #include "core/CoreExport.h"
27 #include "core/css/CSSKeyframesRule.h" 27 #include "core/css/CSSKeyframesRule.h"
28 #include "core/css/MediaQueryEvaluator.h" 28 #include "core/css/MediaQueryEvaluator.h"
29 #include "core/css/RuleFeature.h" 29 #include "core/css/RuleFeature.h"
30 #include "core/css/StyleRule.h" 30 #include "core/css/StyleRule.h"
31 #include "core/css/resolver/MediaQueryResult.h" 31 #include "core/css/resolver/MediaQueryResult.h"
32 #include "platform/heap/HeapLinkedStack.h" 32 #include "platform/heap/HeapLinkedStack.h"
33 #include "platform/heap/HeapTerminatedArray.h" 33 #include "platform/heap/HeapTerminatedArray.h"
34 #include "wtf/Forward.h" 34 #include "wtf/Forward.h"
35 #include "wtf/HashMap.h" 35 #include "wtf/HashMap.h"
36 #include "wtf/LinkedStack.h"
37 #include "wtf/TerminatedArray.h" 36 #include "wtf/TerminatedArray.h"
38 37
39 namespace blink { 38 namespace blink {
40 39
41 enum AddRuleFlags { 40 enum AddRuleFlags {
42 RuleHasNoSpecialState = 0, 41 RuleHasNoSpecialState = 0,
43 RuleHasDocumentSecurityOrigin = 1, 42 RuleHasDocumentSecurityOrigin = 1,
44 }; 43 };
45 44
46 enum PropertyWhitelistType { 45 enum PropertyWhitelistType {
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 Member<PendingRuleMaps> m_pendingRules; 312 Member<PendingRuleMaps> m_pendingRules;
314 313
315 #ifndef NDEBUG 314 #ifndef NDEBUG
316 HeapVector<RuleData> m_allRules; 315 HeapVector<RuleData> m_allRules;
317 #endif 316 #endif
318 }; 317 };
319 318
320 } // namespace blink 319 } // namespace blink
321 320
322 #endif // RuleSet_h 321 #endif // RuleSet_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/heap/HeapLinkedStack.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698