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

Side by Side Diff: third_party/WebKit/Source/core/dom/Element.h

Issue 2658073003: Remove redundant argument being passed to didRecalcStyle (Closed)
Patch Set: Created 3 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/dom/Element.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) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Peter Kelly (pmk@post.com) 4 * (C) 2001 Peter Kelly (pmk@post.com)
5 * (C) 2001 Dirk Mueller (mueller@kde.org) 5 * (C) 2001 Dirk Mueller (mueller@kde.org)
6 * Copyright (C) 2003-2011, 2013, 2014 Apple Inc. All rights reserved. 6 * Copyright (C) 2003-2011, 2013, 2014 Apple Inc. All rights reserved.
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 751 matching lines...) Expand 10 before | Expand all | Expand 10 after
762 // TODO(sashab): Make this take a const CSSValue&. 762 // TODO(sashab): Make this take a const CSSValue&.
763 void addPropertyToPresentationAttributeStyle(MutableStylePropertySet*, 763 void addPropertyToPresentationAttributeStyle(MutableStylePropertySet*,
764 CSSPropertyID, 764 CSSPropertyID,
765 const CSSValue*); 765 const CSSValue*);
766 766
767 InsertionNotificationRequest insertedInto(ContainerNode*) override; 767 InsertionNotificationRequest insertedInto(ContainerNode*) override;
768 void removedFrom(ContainerNode*) override; 768 void removedFrom(ContainerNode*) override;
769 void childrenChanged(const ChildrenChange&) override; 769 void childrenChanged(const ChildrenChange&) override;
770 770
771 virtual void willRecalcStyle(StyleRecalcChange); 771 virtual void willRecalcStyle(StyleRecalcChange);
772 virtual void didRecalcStyle(StyleRecalcChange); 772 virtual void didRecalcStyle();
773 virtual PassRefPtr<ComputedStyle> customStyleForLayoutObject(); 773 virtual PassRefPtr<ComputedStyle> customStyleForLayoutObject();
774 774
775 virtual bool shouldRegisterAsNamedItem() const { return false; } 775 virtual bool shouldRegisterAsNamedItem() const { return false; }
776 virtual bool shouldRegisterAsExtraNamedItem() const { return false; } 776 virtual bool shouldRegisterAsExtraNamedItem() const { return false; }
777 777
778 bool supportsSpatialNavigationFocus() const; 778 bool supportsSpatialNavigationFocus() const;
779 779
780 void clearTabIndexExplicitlyIfNeeded(); 780 void clearTabIndexExplicitlyIfNeeded();
781 void setTabIndexExplicitly(); 781 void setTabIndexExplicitly();
782 // Subclasses may override this method to affect focusability. This method 782 // Subclasses may override this method to affect focusability. This method
(...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after
1191 #define DECLARE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ 1191 #define DECLARE_ELEMENT_FACTORY_WITH_TAGNAME(T) \
1192 static T* create(const QualifiedName&, Document&) 1192 static T* create(const QualifiedName&, Document&)
1193 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ 1193 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \
1194 T* T::create(const QualifiedName& tagName, Document& document) { \ 1194 T* T::create(const QualifiedName& tagName, Document& document) { \
1195 return new T(tagName, document); \ 1195 return new T(tagName, document); \
1196 } 1196 }
1197 1197
1198 } // namespace blink 1198 } // namespace blink
1199 1199
1200 #endif // Element_h 1200 #endif // Element_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/dom/Element.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698