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

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

Issue 1174243004: Remove CSSStyleDeclaration::copyProperties() (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 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/PropertySetCSSStyleDeclaration.h ('k') | no next file » | 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 * (C) 1999-2003 Lars Knoll (knoll@kde.org) 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r ights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r ights reserved.
4 * Copyright (C) 2011 Research In Motion Limited. All rights reserved. 4 * Copyright (C) 2011 Research In Motion Limited. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 if (changed) 261 if (changed)
262 mutationScope.enqueueMutationRecord(); 262 mutationScope.enqueueMutationRecord();
263 } 263 }
264 264
265 StyleSheetContents* AbstractPropertySetCSSStyleDeclaration::contextStyleSheet() const 265 StyleSheetContents* AbstractPropertySetCSSStyleDeclaration::contextStyleSheet() const
266 { 266 {
267 CSSStyleSheet* cssStyleSheet = parentStyleSheet(); 267 CSSStyleSheet* cssStyleSheet = parentStyleSheet();
268 return cssStyleSheet ? cssStyleSheet->contents() : 0; 268 return cssStyleSheet ? cssStyleSheet->contents() : 0;
269 } 269 }
270 270
271 PassRefPtrWillBeRawPtr<MutableStylePropertySet> AbstractPropertySetCSSStyleDecla ration::copyProperties() const
272 {
273 return propertySet().mutableCopy();
274 }
275
276 bool AbstractPropertySetCSSStyleDeclaration::cssPropertyMatches(CSSPropertyID pr opertyID, const CSSValue* propertyValue) const 271 bool AbstractPropertySetCSSStyleDeclaration::cssPropertyMatches(CSSPropertyID pr opertyID, const CSSValue* propertyValue) const
277 { 272 {
278 return propertySet().propertyMatches(propertyID, propertyValue); 273 return propertySet().propertyMatches(propertyID, propertyValue);
279 } 274 }
280 275
281 DEFINE_TRACE(AbstractPropertySetCSSStyleDeclaration) 276 DEFINE_TRACE(AbstractPropertySetCSSStyleDeclaration)
282 { 277 {
283 CSSStyleDeclaration::trace(visitor); 278 CSSStyleDeclaration::trace(visitor);
284 } 279 }
285 280
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 } 382 }
388 #endif 383 #endif
389 384
390 DEFINE_TRACE(InlineCSSStyleDeclaration) 385 DEFINE_TRACE(InlineCSSStyleDeclaration)
391 { 386 {
392 visitor->trace(m_parentElement); 387 visitor->trace(m_parentElement);
393 AbstractPropertySetCSSStyleDeclaration::trace(visitor); 388 AbstractPropertySetCSSStyleDeclaration::trace(visitor);
394 } 389 }
395 390
396 } // namespace blink 391 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/css/PropertySetCSSStyleDeclaration.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698