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

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

Issue 17480002: Remove unused includes from core/accessibility, core/css and core/dom (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebased ; update <wtf/Foo.h> to "wtf/Foo.h" in changed files Created 7 years, 6 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/CSSStyleSheet.h ('k') | Source/core/css/CSSTransformValue.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright (C) 2012 Motorola Mobility Inc. All rights reserved. 1 /* Copyright (C) 2012 Motorola Mobility Inc. All rights reserved.
2 * 2 *
3 * Redistribution and use in source and binary forms, with or without 3 * Redistribution and use in source and binary forms, with or without
4 * modification, are permitted provided that the following conditions are 4 * modification, are permitted provided that the following conditions are
5 * met: 5 * met:
6 * 6 *
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above 9 * 2. Redistributions in binary form must reproduce the above
10 * copyright notice, this list of conditions and the following disclaimer in 10 * copyright notice, this list of conditions and the following disclaimer in
(...skipping 13 matching lines...) Expand all
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */ 27 */
28 28
29 #include "config.h" 29 #include "config.h"
30 #include "core/css/CSSSupportsRule.h" 30 #include "core/css/CSSSupportsRule.h"
31 31
32 #include "core/css/CSSRule.h" 32 #include "core/css/CSSRule.h"
33 #include "core/css/StyleRule.h" 33 #include "core/css/StyleRule.h"
34 #include <wtf/MemoryInstrumentationVector.h> 34 #include "wtf/text/StringBuilder.h"
35 #include <wtf/text/StringBuilder.h>
36 35
37 namespace WebCore { 36 namespace WebCore {
38 37
39 CSSSupportsRule::CSSSupportsRule(StyleRuleSupports* supportsRule, CSSStyleSheet* parent) 38 CSSSupportsRule::CSSSupportsRule(StyleRuleSupports* supportsRule, CSSStyleSheet* parent)
40 : CSSGroupingRule(supportsRule, parent) 39 : CSSGroupingRule(supportsRule, parent)
41 { 40 {
42 } 41 }
43 42
44 String CSSSupportsRule::cssText() const 43 String CSSSupportsRule::cssText() const
45 { 44 {
46 StringBuilder result; 45 StringBuilder result;
47 46
48 result.append("@supports "); 47 result.append("@supports ");
49 result.append(conditionText()); 48 result.append(conditionText());
50 result.append(" {\n"); 49 result.append(" {\n");
51 appendCssTextForItems(result); 50 appendCssTextForItems(result);
52 result.append('}'); 51 result.append('}');
53 52
54 return result.toString(); 53 return result.toString();
55 } 54 }
56 55
57 String CSSSupportsRule::conditionText() const 56 String CSSSupportsRule::conditionText() const
58 { 57 {
59 return toStyleRuleSupports(m_groupRule.get())->conditionText(); 58 return toStyleRuleSupports(m_groupRule.get())->conditionText();
60 } 59 }
61 60
62 } // namespace WebCore 61 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/css/CSSStyleSheet.h ('k') | Source/core/css/CSSTransformValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698