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

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

Issue 1560693002: Avoid unnecessary invalidation scheduling. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Compile fix Created 4 years, 11 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 | « no previous file | third_party/WebKit/Source/core/css/invalidation/StyleInvalidator.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 * (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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 changed = propertySet().setProperty(AtomicString(customPropertyName), va lue, important, contextStyleSheet()); 284 changed = propertySet().setProperty(AtomicString(customPropertyName), va lue, important, contextStyleSheet());
285 else 285 else
286 changed = propertySet().setProperty(unresolvedProperty, value, important , contextStyleSheet()); 286 changed = propertySet().setProperty(unresolvedProperty, value, important , contextStyleSheet());
287 287
288 didMutate(changed ? PropertyChanged : NoChanges); 288 didMutate(changed ? PropertyChanged : NoChanges);
289 289
290 if (!changed) 290 if (!changed)
291 return; 291 return;
292 292
293 Element* parent = parentElement(); 293 Element* parent = parentElement();
294 if (parent && parent->inActiveDocument() && parent->document().styleResolver ()) 294 if (parent)
295 parent->document().styleEngine().attributeChangedForElement(HTMLNames::s tyleAttr, *parent); 295 parent->document().styleEngine().attributeChangedForElement(HTMLNames::s tyleAttr, *parent);
296 mutationScope.enqueueMutationRecord(); 296 mutationScope.enqueueMutationRecord();
297 } 297 }
298 298
299 StyleSheetContents* AbstractPropertySetCSSStyleDeclaration::contextStyleSheet() const 299 StyleSheetContents* AbstractPropertySetCSSStyleDeclaration::contextStyleSheet() const
300 { 300 {
301 CSSStyleSheet* cssStyleSheet = parentStyleSheet(); 301 CSSStyleSheet* cssStyleSheet = parentStyleSheet();
302 return cssStyleSheet ? cssStyleSheet->contents() : nullptr; 302 return cssStyleSheet ? cssStyleSheet->contents() : nullptr;
303 } 303 }
304 304
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 } 416 }
417 #endif 417 #endif
418 418
419 DEFINE_TRACE(InlineCSSStyleDeclaration) 419 DEFINE_TRACE(InlineCSSStyleDeclaration)
420 { 420 {
421 visitor->trace(m_parentElement); 421 visitor->trace(m_parentElement);
422 AbstractPropertySetCSSStyleDeclaration::trace(visitor); 422 AbstractPropertySetCSSStyleDeclaration::trace(visitor);
423 } 423 }
424 424
425 } // namespace blink 425 } // namespace blink
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/css/invalidation/StyleInvalidator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698