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

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

Issue 22043003: [oilpan] Handlify childrenChanged. (Closed) Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Created 7 years, 4 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 virtual void accept(Visitor*) const OVERRIDE; 55 virtual void accept(Visitor*) const OVERRIDE;
56 56
57 private: 57 private:
58 HTMLOutputElement(const QualifiedName&, Handle<Document>, const Handle<HTMLF ormElement>&); 58 HTMLOutputElement(const QualifiedName&, Handle<Document>, const Handle<HTMLF ormElement>&);
59 59
60 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR IDE; 60 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR IDE;
61 virtual const AtomicString& formControlType() const; 61 virtual const AtomicString& formControlType() const;
62 virtual bool isEnumeratable() const { return true; } 62 virtual bool isEnumeratable() const { return true; }
63 virtual bool supportLabels() const OVERRIDE { return true; } 63 virtual bool supportLabels() const OVERRIDE { return true; }
64 virtual bool supportsFocus() const; 64 virtual bool supportsFocus() const;
65 virtual void childrenChanged(bool createdByParser = false, Node* beforeChang e = 0, Node* afterChange = 0, int childCountDelta = 0); 65 virtual void childrenChanged(bool createdByParser = false, const Handle<Node >& beforeChange = nullptr, const Handle<Node>& afterChange = nullptr, int childC ountDelta = 0);
66 virtual void reset(); 66 virtual void reset();
67 67
68 void setTextContentInternal(const String&); 68 void setTextContentInternal(const String&);
69 69
70 bool m_isDefaultValueMode; 70 bool m_isDefaultValueMode;
71 bool m_isSetTextContentInProgress; 71 bool m_isSetTextContentInProgress;
72 String m_defaultValue; 72 String m_defaultValue;
73 RefPtr<DOMSettableTokenList> m_tokens; 73 RefPtr<DOMSettableTokenList> m_tokens;
74 }; 74 };
75 75
76 } // namespace 76 } // namespace
77 77
78 #endif 78 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698