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

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

Issue 540283003: bindings: Retires ScriptWrappable::init, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Addressed a review comment. Created 6 years, 3 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
« no previous file with comments | « Source/core/html/HTMLOptionsCollection.cpp ('k') | Source/core/html/HTMLParagraphElement.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) 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 24 matching lines...) Expand all
35 #include "core/HTMLNames.h" 35 #include "core/HTMLNames.h"
36 36
37 namespace blink { 37 namespace blink {
38 38
39 inline HTMLOutputElement::HTMLOutputElement(Document& document, HTMLFormElement* form) 39 inline HTMLOutputElement::HTMLOutputElement(Document& document, HTMLFormElement* form)
40 : HTMLFormControlElement(HTMLNames::outputTag, document, form) 40 : HTMLFormControlElement(HTMLNames::outputTag, document, form)
41 , m_isDefaultValueMode(true) 41 , m_isDefaultValueMode(true)
42 , m_defaultValue("") 42 , m_defaultValue("")
43 , m_tokens(DOMSettableTokenList::create()) 43 , m_tokens(DOMSettableTokenList::create())
44 { 44 {
45 ScriptWrappable::init(this);
46 } 45 }
47 46
48 PassRefPtrWillBeRawPtr<HTMLOutputElement> HTMLOutputElement::create(Document& do cument, HTMLFormElement* form) 47 PassRefPtrWillBeRawPtr<HTMLOutputElement> HTMLOutputElement::create(Document& do cument, HTMLFormElement* form)
49 { 48 {
50 return adoptRefWillBeNoop(new HTMLOutputElement(document, form)); 49 return adoptRefWillBeNoop(new HTMLOutputElement(document, form));
51 } 50 }
52 51
53 const AtomicString& HTMLOutputElement::formControlType() const 52 const AtomicString& HTMLOutputElement::formControlType() const
54 { 53 {
55 DEFINE_STATIC_LOCAL(const AtomicString, output, ("output", AtomicString::Con structFromLiteral)); 54 DEFINE_STATIC_LOCAL(const AtomicString, output, ("output", AtomicString::Con structFromLiteral));
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 } 128 }
130 129
131 130
132 void HTMLOutputElement::trace(Visitor* visitor) 131 void HTMLOutputElement::trace(Visitor* visitor)
133 { 132 {
134 visitor->trace(m_tokens); 133 visitor->trace(m_tokens);
135 HTMLFormControlElement::trace(visitor); 134 HTMLFormControlElement::trace(visitor);
136 } 135 }
137 136
138 } // namespace 137 } // namespace
OLDNEW
« no previous file with comments | « Source/core/html/HTMLOptionsCollection.cpp ('k') | Source/core/html/HTMLParagraphElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698