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

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

Issue 15447002: Remove ~1750 superfluous includes from core (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebase a few hours Created 7 years, 7 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 | « Source/core/css/WebKitCSSMatrix.cpp ('k') | Source/core/css/WebKitCSSShaderValue.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 * Copyright (C) 2011 Adobe Systems Incorporated. All rights reserved. 2 * Copyright (C) 2011 Adobe Systems Incorporated. All rights reserved.
3 * Copyright (C) 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2012 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above 9 * 1. Redistributions of source code must retain the above
10 * copyright notice, this list of conditions and the following 10 * copyright notice, this list of conditions and the following
(...skipping 14 matching lines...) Expand all
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR 25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
26 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF 26 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
27 * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27 * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 * SUCH DAMAGE. 28 * SUCH DAMAGE.
29 */ 29 */
30 30
31 #include "config.h" 31 #include "config.h"
32 32
33 #include "core/css/WebKitCSSRegionRule.h" 33 #include "core/css/WebKitCSSRegionRule.h"
34 34
35 #include "RuntimeEnabledFeatures.h"
36 #include "core/css/CSSParser.h"
37 #include "core/css/CSSRuleList.h"
38 #include "core/css/StyleRule.h" 35 #include "core/css/StyleRule.h"
39 #include <wtf/MemoryInstrumentationVector.h> 36 #include <wtf/MemoryInstrumentationVector.h>
40 #include <wtf/text/StringBuilder.h> 37 #include <wtf/text/StringBuilder.h>
41 38
42 namespace WebCore { 39 namespace WebCore {
43 WebKitCSSRegionRule::WebKitCSSRegionRule(StyleRuleRegion* regionRule, CSSStyleSh eet* parent) 40 WebKitCSSRegionRule::WebKitCSSRegionRule(StyleRuleRegion* regionRule, CSSStyleSh eet* parent)
44 : CSSGroupingRule(regionRule, parent) 41 : CSSGroupingRule(regionRule, parent)
45 { 42 {
46 ASSERT(RuntimeEnabledFeatures::cssRegionsEnabled()); 43 ASSERT(RuntimeEnabledFeatures::cssRegionsEnabled());
47 } 44 }
48 45
49 String WebKitCSSRegionRule::cssText() const 46 String WebKitCSSRegionRule::cssText() const
50 { 47 {
51 StringBuilder result; 48 StringBuilder result;
52 result.appendLiteral("@-webkit-region "); 49 result.appendLiteral("@-webkit-region ");
53 50
54 // First add the selectors. 51 // First add the selectors.
55 result.append(toStyleRuleRegion(m_groupRule.get())->selectorList().selectors Text()); 52 result.append(toStyleRuleRegion(m_groupRule.get())->selectorList().selectors Text());
56 53
57 // Then add the rules. 54 // Then add the rules.
58 result.appendLiteral(" { \n"); 55 result.appendLiteral(" { \n");
59 appendCssTextForItems(result); 56 appendCssTextForItems(result);
60 result.append('}'); 57 result.append('}');
61 return result.toString(); 58 return result.toString();
62 } 59 }
63 60
64 } // namespace WebCore 61 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/css/WebKitCSSMatrix.cpp ('k') | Source/core/css/WebKitCSSShaderValue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698