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

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

Issue 2580793005: Split the CSSParserContext class out of CSSParserMode into its own file. (Closed)
Patch Set: fix compile 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 * (C) 1999-2003 Lars Knoll (knoll@kde.org) 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2004, 2006, 2007, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2006, 2007, 2012 Apple Inc. All rights reserved.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 13 matching lines...) Expand all
24 #include "bindings/core/v8/V8Binding.h" 24 #include "bindings/core/v8/V8Binding.h"
25 #include "bindings/core/v8/V8PerIsolateData.h" 25 #include "bindings/core/v8/V8PerIsolateData.h"
26 #include "core/HTMLNames.h" 26 #include "core/HTMLNames.h"
27 #include "core/SVGNames.h" 27 #include "core/SVGNames.h"
28 #include "core/css/CSSImportRule.h" 28 #include "core/css/CSSImportRule.h"
29 #include "core/css/CSSRuleList.h" 29 #include "core/css/CSSRuleList.h"
30 #include "core/css/MediaList.h" 30 #include "core/css/MediaList.h"
31 #include "core/css/StyleRule.h" 31 #include "core/css/StyleRule.h"
32 #include "core/css/StyleSheetContents.h" 32 #include "core/css/StyleSheetContents.h"
33 #include "core/css/parser/CSSParser.h" 33 #include "core/css/parser/CSSParser.h"
34 #include "core/css/parser/CSSParserContext.h"
34 #include "core/dom/Document.h" 35 #include "core/dom/Document.h"
35 #include "core/dom/ExceptionCode.h" 36 #include "core/dom/ExceptionCode.h"
36 #include "core/dom/Node.h" 37 #include "core/dom/Node.h"
37 #include "core/dom/StyleEngine.h" 38 #include "core/dom/StyleEngine.h"
38 #include "core/frame/Deprecation.h" 39 #include "core/frame/Deprecation.h"
39 #include "core/html/HTMLStyleElement.h" 40 #include "core/html/HTMLStyleElement.h"
40 #include "core/inspector/InspectorInstrumentation.h" 41 #include "core/inspector/InspectorInstrumentation.h"
41 #include "core/svg/SVGStyleElement.h" 42 #include "core/svg/SVGStyleElement.h"
42 #include "platform/weborigin/SecurityOrigin.h" 43 #include "platform/weborigin/SecurityOrigin.h"
43 #include "wtf/text/StringBuilder.h" 44 #include "wtf/text/StringBuilder.h"
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after
433 visitor->trace(m_deviceDependentMediaQueryResults); 434 visitor->trace(m_deviceDependentMediaQueryResults);
434 visitor->trace(m_ownerNode); 435 visitor->trace(m_ownerNode);
435 visitor->trace(m_ownerRule); 436 visitor->trace(m_ownerRule);
436 visitor->trace(m_mediaCSSOMWrapper); 437 visitor->trace(m_mediaCSSOMWrapper);
437 visitor->trace(m_childRuleCSSOMWrappers); 438 visitor->trace(m_childRuleCSSOMWrappers);
438 visitor->trace(m_ruleListCSSOMWrapper); 439 visitor->trace(m_ruleListCSSOMWrapper);
439 StyleSheet::trace(visitor); 440 StyleSheet::trace(visitor);
440 } 441 }
441 442
442 } // namespace blink 443 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/BUILD.gn ('k') | third_party/WebKit/Source/core/css/CSSSyntaxDescriptor.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698