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

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

Issue 14763003: HashTraits<RefPtr<P> >::PeekType should be raw pointer for better performance (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 7 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/InspectorCSSOMWrappers.cpp ('k') | Source/core/html/HTMLAnchorElement.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) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) 3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com)
4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) 4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com)
5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved. 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved.
6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> 6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> 7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org>
8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. 9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved.
10 * Copyright (C) Research In Motion Limited 2011. All rights reserved. 10 * Copyright (C) Research In Motion Limited 2011. All rights reserved.
(...skipping 3684 matching lines...) Expand 10 before | Expand all | Expand 10 after
3695 if (!state.style()->hasFilter() || state.pendingSVGDocuments().isEmpty()) 3695 if (!state.style()->hasFilter() || state.pendingSVGDocuments().isEmpty())
3696 return; 3696 return;
3697 3697
3698 CachedResourceLoader* cachedResourceLoader = state.document()->cachedResourc eLoader(); 3698 CachedResourceLoader* cachedResourceLoader = state.document()->cachedResourc eLoader();
3699 Vector<RefPtr<FilterOperation> >& filterOperations = state.style()->mutableF ilter().operations(); 3699 Vector<RefPtr<FilterOperation> >& filterOperations = state.style()->mutableF ilter().operations();
3700 for (unsigned i = 0; i < filterOperations.size(); ++i) { 3700 for (unsigned i = 0; i < filterOperations.size(); ++i) {
3701 RefPtr<FilterOperation> filterOperation = filterOperations.at(i); 3701 RefPtr<FilterOperation> filterOperation = filterOperations.at(i);
3702 if (filterOperation->getOperationType() == FilterOperation::REFERENCE) { 3702 if (filterOperation->getOperationType() == FilterOperation::REFERENCE) {
3703 ReferenceFilterOperation* referenceFilter = static_cast<ReferenceFil terOperation*>(filterOperation.get()); 3703 ReferenceFilterOperation* referenceFilter = static_cast<ReferenceFil terOperation*>(filterOperation.get());
3704 3704
3705 WebKitCSSSVGDocumentValue* value = state.pendingSVGDocuments().get(r eferenceFilter).get(); 3705 WebKitCSSSVGDocumentValue* value = state.pendingSVGDocuments().get(r eferenceFilter);
3706 if (!value) 3706 if (!value)
3707 continue; 3707 continue;
3708 CachedSVGDocument* cachedDocument = value->load(cachedResourceLoader ); 3708 CachedSVGDocument* cachedDocument = value->load(cachedResourceLoader );
3709 if (!cachedDocument) 3709 if (!cachedDocument)
3710 continue; 3710 continue;
3711 3711
3712 // Stash the CachedSVGDocument on the reference filter. 3712 // Stash the CachedSVGDocument on the reference filter.
3713 referenceFilter->setCachedSVGDocumentReference(adoptPtr(new CachedSV GDocumentReference(cachedDocument))); 3713 referenceFilter->setCachedSVGDocumentReference(adoptPtr(new CachedSV GDocumentReference(cachedDocument)));
3714 } 3714 }
3715 } 3715 }
(...skipping 644 matching lines...) Expand 10 before | Expand all | Expand 10 after
4360 info.addMember(m_state, "state"); 4360 info.addMember(m_state, "state");
4361 4361
4362 // FIXME: move this to a place where it would be called only once? 4362 // FIXME: move this to a place where it would be called only once?
4363 info.addMember(CSSDefaultStyleSheets::defaultStyle, "defaultStyle"); 4363 info.addMember(CSSDefaultStyleSheets::defaultStyle, "defaultStyle");
4364 info.addMember(CSSDefaultStyleSheets::defaultQuirksStyle, "defaultQuirksStyl e"); 4364 info.addMember(CSSDefaultStyleSheets::defaultQuirksStyle, "defaultQuirksStyl e");
4365 info.addMember(CSSDefaultStyleSheets::defaultPrintStyle,"defaultPrintStyle") ; 4365 info.addMember(CSSDefaultStyleSheets::defaultPrintStyle,"defaultPrintStyle") ;
4366 info.addMember(CSSDefaultStyleSheets::defaultViewSourceStyle, "defaultViewSo urceStyle"); 4366 info.addMember(CSSDefaultStyleSheets::defaultViewSourceStyle, "defaultViewSo urceStyle");
4367 } 4367 }
4368 4368
4369 } // namespace WebCore 4369 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/css/InspectorCSSOMWrappers.cpp ('k') | Source/core/html/HTMLAnchorElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698