Chromium Code Reviews

Side by Side Diff: Source/core/css/CSSStyleSheet.h

Issue 100453011: Rename css/CSSParser to css/parser/BisonCSSParser. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
« no previous file with comments | « Source/core/css/CSSStyleRule.cpp ('k') | Source/core/css/CSSStyleSheet.cpp » ('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 * (C) 1999-2003 Lars Knoll (knoll@kde.org) 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2004, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2006, 2007, 2008, 2009, 2010, 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 12 matching lines...)
23 23
24 #include "core/css/CSSRule.h" 24 #include "core/css/CSSRule.h"
25 #include "core/css/StyleSheet.h" 25 #include "core/css/StyleSheet.h"
26 #include "wtf/Noncopyable.h" 26 #include "wtf/Noncopyable.h"
27 #include "wtf/text/TextPosition.h" 27 #include "wtf/text/TextPosition.h"
28 28
29 namespace WebCore { 29 namespace WebCore {
30 30
31 class CSSCharsetRule; 31 class CSSCharsetRule;
32 class CSSImportRule; 32 class CSSImportRule;
33 class CSSParser; 33 class BisonCSSParser;
34 class CSSRule; 34 class CSSRule;
35 class CSSRuleList; 35 class CSSRuleList;
36 class CSSStyleSheet; 36 class CSSStyleSheet;
37 class CSSStyleSheetResource; 37 class CSSStyleSheetResource;
38 class Document; 38 class Document;
39 class ExceptionState; 39 class ExceptionState;
40 class MediaQuerySet; 40 class MediaQuerySet;
41 class SecurityOrigin; 41 class SecurityOrigin;
42 class StyleSheetContents; 42 class StyleSheetContents;
43 43
(...skipping 117 matching lines...)
161 { 161 {
162 if (m_styleSheet) 162 if (m_styleSheet)
163 m_styleSheet->didMutateRules(); 163 m_styleSheet->didMutateRules();
164 } 164 }
165 165
166 DEFINE_TYPE_CASTS(CSSStyleSheet, StyleSheet, sheet, sheet->isCSSStyleSheet(), sh eet.isCSSStyleSheet()); 166 DEFINE_TYPE_CASTS(CSSStyleSheet, StyleSheet, sheet, sheet->isCSSStyleSheet(), sh eet.isCSSStyleSheet());
167 167
168 } // namespace 168 } // namespace
169 169
170 #endif 170 #endif
OLDNEW
« no previous file with comments | « Source/core/css/CSSStyleRule.cpp ('k') | Source/core/css/CSSStyleSheet.cpp » ('j') | no next file with comments »

Powered by Google App Engine