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

Side by Side Diff: Source/core/html/HTMLTextAreaElement.h

Issue 365673002: Pass a struct to ContainerNode::childrenChanged() instead of separate arguments (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove dead code Created 6 years, 5 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 | Annotate | Revision Log
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) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Apple Inc. All rights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Apple Inc. All rights reserved.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 virtual bool supportsAutofocus() const OVERRIDE; 96 virtual bool supportsAutofocus() const OVERRIDE;
97 virtual bool supportLabels() const OVERRIDE { return true; } 97 virtual bool supportLabels() const OVERRIDE { return true; }
98 98
99 virtual const AtomicString& formControlType() const OVERRIDE; 99 virtual const AtomicString& formControlType() const OVERRIDE;
100 100
101 virtual FormControlState saveFormControlState() const OVERRIDE; 101 virtual FormControlState saveFormControlState() const OVERRIDE;
102 virtual void restoreFormControlState(const FormControlState&) OVERRIDE; 102 virtual void restoreFormControlState(const FormControlState&) OVERRIDE;
103 103
104 virtual bool isTextFormControl() const OVERRIDE { return true; } 104 virtual bool isTextFormControl() const OVERRIDE { return true; }
105 105
106 virtual void childrenChanged(bool changedByParser = false, Node* beforeChang e = 0, Node* afterChange = 0, int childCountDelta = 0) OVERRIDE; 106 virtual void childrenChanged(const ChildrenChange&) OVERRIDE;
107 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR IDE; 107 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR IDE;
108 virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE; 108 virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE;
109 virtual void collectStyleForPresentationAttribute(const QualifiedName&, cons t AtomicString&, MutableStylePropertySet*) OVERRIDE; 109 virtual void collectStyleForPresentationAttribute(const QualifiedName&, cons t AtomicString&, MutableStylePropertySet*) OVERRIDE;
110 virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE; 110 virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE;
111 virtual bool appendFormData(FormDataList&, bool) OVERRIDE; 111 virtual bool appendFormData(FormDataList&, bool) OVERRIDE;
112 virtual void resetImpl() OVERRIDE; 112 virtual void resetImpl() OVERRIDE;
113 virtual bool hasCustomFocusLogic() const OVERRIDE; 113 virtual bool hasCustomFocusLogic() const OVERRIDE;
114 virtual bool shouldShowFocusRingOnMouseFocus() const OVERRIDE; 114 virtual bool shouldShowFocusRingOnMouseFocus() const OVERRIDE;
115 virtual bool isKeyboardFocusable() const OVERRIDE; 115 virtual bool isKeyboardFocusable() const OVERRIDE;
116 virtual void updateFocusAppearance(bool restorePreviousSelection) OVERRIDE; 116 virtual void updateFocusAppearance(bool restorePreviousSelection) OVERRIDE;
(...skipping 12 matching lines...) Expand all
129 WrapMethod m_wrap; 129 WrapMethod m_wrap;
130 mutable String m_value; 130 mutable String m_value;
131 mutable bool m_isDirty; 131 mutable bool m_isDirty;
132 bool m_valueIsUpToDate; 132 bool m_valueIsUpToDate;
133 String m_suggestedValue; 133 String m_suggestedValue;
134 }; 134 };
135 135
136 } //namespace 136 } //namespace
137 137
138 #endif 138 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698