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

Side by Side Diff: Source/core/html/HTMLOutputElement.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) 2010 Google Inc. All rights reserved. 2 * Copyright (c) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 virtual void trace(Visitor*) OVERRIDE; 54 virtual void trace(Visitor*) OVERRIDE;
55 55
56 private: 56 private:
57 HTMLOutputElement(Document&, HTMLFormElement*); 57 HTMLOutputElement(Document&, HTMLFormElement*);
58 58
59 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR IDE; 59 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR IDE;
60 virtual const AtomicString& formControlType() const OVERRIDE; 60 virtual const AtomicString& formControlType() const OVERRIDE;
61 virtual bool isEnumeratable() const OVERRIDE { return true; } 61 virtual bool isEnumeratable() const OVERRIDE { return true; }
62 virtual bool supportLabels() const OVERRIDE { return true; } 62 virtual bool supportLabels() const OVERRIDE { return true; }
63 virtual bool supportsFocus() const OVERRIDE; 63 virtual bool supportsFocus() const OVERRIDE;
64 virtual void childrenChanged(bool createdByParser = false, Node* beforeChang e = 0, Node* afterChange = 0, int childCountDelta = 0) OVERRIDE; 64 virtual void childrenChanged(const ChildrenChange&) OVERRIDE;
65 virtual void resetImpl() OVERRIDE; 65 virtual void resetImpl() OVERRIDE;
66 66
67 bool m_isDefaultValueMode; 67 bool m_isDefaultValueMode;
68 String m_defaultValue; 68 String m_defaultValue;
69 RefPtrWillBeMember<DOMSettableTokenList> m_tokens; 69 RefPtrWillBeMember<DOMSettableTokenList> m_tokens;
70 }; 70 };
71 71
72 } // namespace 72 } // namespace
73 73
74 #endif 74 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698