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

Side by Side Diff: Source/core/css/StyleRule.cpp

Issue 14519003: Absolutify paths to dom/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix testrunner Created 7 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/css/StyleResolver.cpp ('k') | Source/core/css/StyleRuleImport.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 * (C) 2002-2003 Dirk Mueller (mueller@kde.org) 3 * (C) 2002-2003 Dirk Mueller (mueller@kde.org)
4 * Copyright (C) 2002, 2005, 2006, 2008, 2012 Apple Inc. All rights reserved. 4 * Copyright (C) 2002, 2005, 2006, 2008, 2012 Apple Inc. 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 *
11 * This library is distributed in the hope that it will be useful, 11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details. 14 * Library General Public License for more details.
15 * 15 *
16 * You should have received a copy of the GNU Library General Public License 16 * You should have received a copy of the GNU Library General Public License
17 * along with this library; see the file COPYING.LIB. If not, write to 17 * along with this library; see the file COPYING.LIB. If not, write to
18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 * Boston, MA 02110-1301, USA. 19 * Boston, MA 02110-1301, USA.
20 */ 20 */
21 21
22 #include "config.h" 22 #include "config.h"
23 #include "core/css/StyleRule.h" 23 #include "core/css/StyleRule.h"
24 24
25 #include "WebCoreMemoryInstrumentation.h"
26 #include "core/css/CSSCharsetRule.h" 25 #include "core/css/CSSCharsetRule.h"
27 #include "core/css/CSSFontFaceRule.h" 26 #include "core/css/CSSFontFaceRule.h"
28 #include "core/css/CSSHostRule.h" 27 #include "core/css/CSSHostRule.h"
29 #include "core/css/CSSImportRule.h" 28 #include "core/css/CSSImportRule.h"
30 #include "core/css/CSSMediaRule.h" 29 #include "core/css/CSSMediaRule.h"
31 #include "core/css/CSSPageRule.h" 30 #include "core/css/CSSPageRule.h"
32 #include "core/css/CSSStyleRule.h" 31 #include "core/css/CSSStyleRule.h"
33 #include "core/css/CSSSupportsRule.h" 32 #include "core/css/CSSSupportsRule.h"
34 #include "core/css/CSSUnknownRule.h" 33 #include "core/css/CSSUnknownRule.h"
35 #include "core/css/StylePropertySet.h" 34 #include "core/css/StylePropertySet.h"
36 #include "core/css/StyleRuleImport.h" 35 #include "core/css/StyleRuleImport.h"
37 #include "core/css/WebKitCSSFilterRule.h" 36 #include "core/css/WebKitCSSFilterRule.h"
38 #include "core/css/WebKitCSSKeyframeRule.h" 37 #include "core/css/WebKitCSSKeyframeRule.h"
39 #include "core/css/WebKitCSSKeyframesRule.h" 38 #include "core/css/WebKitCSSKeyframesRule.h"
40 #include "core/css/WebKitCSSRegionRule.h" 39 #include "core/css/WebKitCSSRegionRule.h"
41 #include "core/css/WebKitCSSViewportRule.h" 40 #include "core/css/WebKitCSSViewportRule.h"
41 #include "core/dom/WebCoreMemoryInstrumentation.h"
42 #include <wtf/MemoryInstrumentationVector.h> 42 #include <wtf/MemoryInstrumentationVector.h>
43 43
44 namespace WebCore { 44 namespace WebCore {
45 45
46 struct SameSizeAsStyleRuleBase : public WTF::RefCountedBase { 46 struct SameSizeAsStyleRuleBase : public WTF::RefCountedBase {
47 unsigned bitfields; 47 unsigned bitfields;
48 }; 48 };
49 49
50 COMPILE_ASSERT(sizeof(StyleRuleBase) == sizeof(SameSizeAsStyleRuleBase), StyleRu leBase_should_stay_small); 50 COMPILE_ASSERT(sizeof(StyleRuleBase) == sizeof(SameSizeAsStyleRuleBase), StyleRu leBase_should_stay_small);
51 51
(...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after
517 } 517 }
518 518
519 void StyleRuleFilter::reportDescendantMemoryUsage(MemoryObjectInfo* memoryObject Info) const 519 void StyleRuleFilter::reportDescendantMemoryUsage(MemoryObjectInfo* memoryObject Info) const
520 { 520 {
521 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); 521 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS);
522 info.addMember(m_filterName); 522 info.addMember(m_filterName);
523 info.addMember(m_properties); 523 info.addMember(m_properties);
524 } 524 }
525 525
526 } // namespace WebCore 526 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/css/StyleResolver.cpp ('k') | Source/core/css/StyleRuleImport.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698