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

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

Issue 2813863003: Rewrite references to "wtf/" to "platform/wtf/" in core/css and core/style. (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 *
(...skipping 13 matching lines...) Expand all
24 #define RuleSet_h 24 #define RuleSet_h
25 25
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 "platform/wtf/Forward.h"
35 #include "wtf/HashMap.h" 35 #include "platform/wtf/HashMap.h"
36 #include "wtf/TerminatedArray.h" 36 #include "platform/wtf/TerminatedArray.h"
37 37
38 namespace blink { 38 namespace blink {
39 39
40 enum AddRuleFlags { 40 enum AddRuleFlags {
41 kRuleHasNoSpecialState = 0, 41 kRuleHasNoSpecialState = 0,
42 kRuleHasDocumentSecurityOrigin = 1, 42 kRuleHasDocumentSecurityOrigin = 1,
43 }; 43 };
44 44
45 enum PropertyWhitelistType { 45 enum PropertyWhitelistType {
46 kPropertyWhitelistNone, 46 kPropertyWhitelistNone,
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 Member<PendingRuleMaps> pending_rules_; 323 Member<PendingRuleMaps> pending_rules_;
324 324
325 #ifndef NDEBUG 325 #ifndef NDEBUG
326 HeapVector<RuleData> all_rules_; 326 HeapVector<RuleData> all_rules_;
327 #endif 327 #endif
328 }; 328 };
329 329
330 } // namespace blink 330 } // namespace blink
331 331
332 #endif // RuleSet_h 332 #endif // RuleSet_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/RuleFeature.cpp ('k') | third_party/WebKit/Source/core/css/RuleSet.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698