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

Side by Side Diff: Source/core/editing/EditingStyle.cpp

Issue 148523016: Move most of the [Pass]RefPtr's of CSSPrimitiveValue to our transition types. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Sync to latest change Created 6 years, 10 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/editing/ApplyStyleCommand.cpp ('k') | Source/core/editing/EditorCommand.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) 2007, 2008, 2009 Apple Computer, Inc. 2 * Copyright (C) 2007, 2008, 2009 Apple Computer, Inc.
3 * Copyright (C) 2010, 2011 Google Inc. All rights reserved. 3 * Copyright (C) 2010, 2011 Google 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 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 virtual bool hasAttribute() const { return false; } 162 virtual bool hasAttribute() const { return false; }
163 virtual bool propertyExistsInStyle(const StylePropertySet* style) const { re turn style->getPropertyCSSValue(m_propertyID); } 163 virtual bool propertyExistsInStyle(const StylePropertySet* style) const { re turn style->getPropertyCSSValue(m_propertyID); }
164 virtual bool valueIsPresentInStyle(Element*, StylePropertySet*) const; 164 virtual bool valueIsPresentInStyle(Element*, StylePropertySet*) const;
165 virtual void addToStyle(Element*, EditingStyle*) const; 165 virtual void addToStyle(Element*, EditingStyle*) const;
166 166
167 protected: 167 protected:
168 HTMLElementEquivalent(CSSPropertyID); 168 HTMLElementEquivalent(CSSPropertyID);
169 HTMLElementEquivalent(CSSPropertyID, const QualifiedName& tagName); 169 HTMLElementEquivalent(CSSPropertyID, const QualifiedName& tagName);
170 HTMLElementEquivalent(CSSPropertyID, CSSValueID primitiveValue, const Qualif iedName& tagName); 170 HTMLElementEquivalent(CSSPropertyID, CSSValueID primitiveValue, const Qualif iedName& tagName);
171 const CSSPropertyID m_propertyID; 171 const CSSPropertyID m_propertyID;
172 const RefPtr<CSSPrimitiveValue> m_primitiveValue; 172 const RefPtrWillBePersistent<CSSPrimitiveValue> m_primitiveValue;
173 const QualifiedName* m_tagName; // We can store a pointer because HTML tag n ames are const global. 173 const QualifiedName* m_tagName; // We can store a pointer because HTML tag n ames are const global.
174 }; 174 };
175 175
176 HTMLElementEquivalent::HTMLElementEquivalent(CSSPropertyID id) 176 HTMLElementEquivalent::HTMLElementEquivalent(CSSPropertyID id)
177 : m_propertyID(id) 177 : m_propertyID(id)
178 , m_tagName(0) 178 , m_tagName(0)
179 { 179 {
180 } 180 }
181 181
182 HTMLElementEquivalent::HTMLElementEquivalent(CSSPropertyID id, const QualifiedNa me& tagName) 182 HTMLElementEquivalent::HTMLElementEquivalent(CSSPropertyID id, const QualifiedNa me& tagName)
(...skipping 1449 matching lines...) Expand 10 before | Expand all | Expand 10 after
1632 { 1632 {
1633 for (Node* ancestor = node; ancestor; ancestor = ancestor->parentNode()) { 1633 for (Node* ancestor = node; ancestor; ancestor = ancestor->parentNode()) {
1634 RefPtr<CSSComputedStyleDeclaration> ancestorStyle = CSSComputedStyleDecl aration::create(ancestor); 1634 RefPtr<CSSComputedStyleDeclaration> ancestorStyle = CSSComputedStyleDecl aration::create(ancestor);
1635 if (!hasTransparentBackgroundColor(ancestorStyle.get())) 1635 if (!hasTransparentBackgroundColor(ancestorStyle.get()))
1636 return ancestorStyle->getPropertyCSSValue(CSSPropertyBackgroundColor ); 1636 return ancestorStyle->getPropertyCSSValue(CSSPropertyBackgroundColor );
1637 } 1637 }
1638 return 0; 1638 return 0;
1639 } 1639 }
1640 1640
1641 } 1641 }
OLDNEW
« no previous file with comments | « Source/core/editing/ApplyStyleCommand.cpp ('k') | Source/core/editing/EditorCommand.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698