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

Side by Side Diff: third_party/WebKit/Source/core/html/HTMLSelectElement.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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
4 * (C) 1999 Antti Koivisto (koivisto@kde.org) 4 * (C) 1999 Antti Koivisto (koivisto@kde.org)
5 * (C) 2000 Dirk Mueller (mueller@kde.org) 5 * (C) 2000 Dirk Mueller (mueller@kde.org)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights 6 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights
7 * reserved. 7 * reserved.
8 * Copyright (C) 2010 Google Inc. All rights reserved. 8 * Copyright (C) 2010 Google Inc. All rights reserved.
9 * 9 *
10 * This library is free software; you can redistribute it and/or 10 * This library is free software; you can redistribute it and/or
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 bool supportsAutofocus() const override; 193 bool supportsAutofocus() const override;
194 bool supportLabels() const override { return true; } 194 bool supportLabels() const override { return true; }
195 195
196 FormControlState saveFormControlState() const override; 196 FormControlState saveFormControlState() const override;
197 void restoreFormControlState(const FormControlState&) override; 197 void restoreFormControlState(const FormControlState&) override;
198 198
199 void parseAttribute(const AttributeModificationParams&) override; 199 void parseAttribute(const AttributeModificationParams&) override;
200 bool isPresentationAttribute(const QualifiedName&) const override; 200 bool isPresentationAttribute(const QualifiedName&) const override;
201 201
202 LayoutObject* createLayoutObject(const ComputedStyle&) override; 202 LayoutObject* createLayoutObject(const ComputedStyle&) override;
203 void didRecalcStyle(StyleRecalcChange) override; 203 void didRecalcStyle() override;
204 void detachLayoutTree(const AttachContext& = AttachContext()) override; 204 void detachLayoutTree(const AttachContext& = AttachContext()) override;
205 void appendToFormData(FormData&) override; 205 void appendToFormData(FormData&) override;
206 void didAddUserAgentShadowRoot(ShadowRoot&) override; 206 void didAddUserAgentShadowRoot(ShadowRoot&) override;
207 207
208 void defaultEventHandler(Event*) override; 208 void defaultEventHandler(Event*) override;
209 209
210 void dispatchInputAndChangeEventForMenuList(); 210 void dispatchInputAndChangeEventForMenuList();
211 211
212 void setRecalcListItems(); 212 void setRecalcListItems();
213 void recalcListItems() const; 213 void recalcListItems() const;
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 304
305 FRIEND_TEST_ALL_PREFIXES(HTMLSelectElementTest, FirstSelectableOption); 305 FRIEND_TEST_ALL_PREFIXES(HTMLSelectElementTest, FirstSelectableOption);
306 FRIEND_TEST_ALL_PREFIXES(HTMLSelectElementTest, LastSelectableOption); 306 FRIEND_TEST_ALL_PREFIXES(HTMLSelectElementTest, LastSelectableOption);
307 FRIEND_TEST_ALL_PREFIXES(HTMLSelectElementTest, NextSelectableOption); 307 FRIEND_TEST_ALL_PREFIXES(HTMLSelectElementTest, NextSelectableOption);
308 FRIEND_TEST_ALL_PREFIXES(HTMLSelectElementTest, PreviousSelectableOption); 308 FRIEND_TEST_ALL_PREFIXES(HTMLSelectElementTest, PreviousSelectableOption);
309 }; 309 };
310 310
311 } // namespace blink 311 } // namespace blink
312 312
313 #endif // HTMLSelectElement_h 313 #endif // HTMLSelectElement_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLMediaElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLSelectElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698