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

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

Issue 482753002: Use StringBuilder::appendLiteral() / StringBuilder::append(char) when possible (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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/CSSStyleRule.cpp ('k') | Source/core/css/MediaQuery.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 /* 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 26 matching lines...) Expand all
37 37
38 CSSSupportsRule::CSSSupportsRule(StyleRuleSupports* supportsRule, CSSStyleSheet* parent) 38 CSSSupportsRule::CSSSupportsRule(StyleRuleSupports* supportsRule, CSSStyleSheet* parent)
39 : CSSGroupingRule(supportsRule, parent) 39 : CSSGroupingRule(supportsRule, parent)
40 { 40 {
41 } 41 }
42 42
43 String CSSSupportsRule::cssText() const 43 String CSSSupportsRule::cssText() const
44 { 44 {
45 StringBuilder result; 45 StringBuilder result;
46 46
47 result.append("@supports "); 47 result.appendLiteral("@supports ");
48 result.append(conditionText()); 48 result.append(conditionText());
49 result.append(" {\n"); 49 result.appendLiteral(" {\n");
50 appendCSSTextForItems(result); 50 appendCSSTextForItems(result);
51 result.append('}'); 51 result.append('}');
52 52
53 return result.toString(); 53 return result.toString();
54 } 54 }
55 55
56 String CSSSupportsRule::conditionText() const 56 String CSSSupportsRule::conditionText() const
57 { 57 {
58 return toStyleRuleSupports(m_groupRule.get())->conditionText(); 58 return toStyleRuleSupports(m_groupRule.get())->conditionText();
59 } 59 }
60 60
61 } // namespace blink 61 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/css/CSSStyleRule.cpp ('k') | Source/core/css/MediaQuery.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698