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

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

Issue 15797004: Cleanup WebKit prefixed names for classes in css directory. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 | Annotate | Revision Log
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 12 matching lines...) Expand all
23 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 23 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 24 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
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/CSSRegionRule.h"
34 34
35 #include "RuntimeEnabledFeatures.h" 35 #include "RuntimeEnabledFeatures.h"
36 #include "core/css/CSSParser.h" 36 #include "core/css/CSSParser.h"
37 #include "core/css/CSSRuleList.h" 37 #include "core/css/CSSRuleList.h"
38 #include "core/css/StyleRule.h" 38 #include "core/css/StyleRule.h"
39 #include <wtf/MemoryInstrumentationVector.h> 39 #include "wtf/MemoryInstrumentationVector.h"
40 #include <wtf/text/StringBuilder.h> 40 #include "wtf/text/StringBuilder.h"
41 41
42 namespace WebCore { 42 namespace WebCore {
43 WebKitCSSRegionRule::WebKitCSSRegionRule(StyleRuleRegion* regionRule, CSSStyleSh eet* parent) 43 CSSRegionRule::CSSRegionRule(StyleRuleRegion* regionRule, CSSStyleSheet* parent)
44 : CSSGroupingRule(regionRule, parent) 44 : CSSGroupingRule(regionRule, parent)
45 { 45 {
46 ASSERT(RuntimeEnabledFeatures::cssRegionsEnabled()); 46 ASSERT(RuntimeEnabledFeatures::cssRegionsEnabled());
47 } 47 }
48 48
49 String WebKitCSSRegionRule::cssText() const 49 String CSSRegionRule::cssText() const
50 { 50 {
51 StringBuilder result; 51 StringBuilder result;
52 result.appendLiteral("@-webkit-region "); 52 result.appendLiteral("@-webkit-region ");
53 53
54 // First add the selectors. 54 // First add the selectors.
55 result.append(toStyleRuleRegion(m_groupRule.get())->selectorList().selectors Text()); 55 result.append(toStyleRuleRegion(m_groupRule.get())->selectorList().selectors Text());
56 56
57 // Then add the rules. 57 // Then add the rules.
58 result.appendLiteral(" { \n"); 58 result.appendLiteral(" { \n");
59 appendCssTextForItems(result); 59 appendCssTextForItems(result);
60 result.append('}'); 60 result.append('}');
61 return result.toString(); 61 return result.toString();
62 } 62 }
63 63
64 } // namespace WebCore 64 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698