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

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

Issue 324073002: Oilpan: Switch RefCountedGarbageCollected to GarbageCollectedFinalized for Node. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase and update Node base class list Created 6 years, 6 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/HTMLOptionElement.cpp ('k') | Source/core/html/HTMLProgressElement.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 29 matching lines...) Expand all
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); 45 ScriptWrappable::init(this);
46 } 46 }
47 47
48 PassRefPtrWillBeRawPtr<HTMLOutputElement> HTMLOutputElement::create(Document& do cument, HTMLFormElement* form) 48 PassRefPtrWillBeRawPtr<HTMLOutputElement> HTMLOutputElement::create(Document& do cument, HTMLFormElement* form)
49 { 49 {
50 return adoptRefWillBeRefCountedGarbageCollected(new HTMLOutputElement(docume nt, form)); 50 return adoptRefWillBeNoop(new HTMLOutputElement(document, form));
51 } 51 }
52 52
53 const AtomicString& HTMLOutputElement::formControlType() const 53 const AtomicString& HTMLOutputElement::formControlType() const
54 { 54 {
55 DEFINE_STATIC_LOCAL(const AtomicString, output, ("output", AtomicString::Con structFromLiteral)); 55 DEFINE_STATIC_LOCAL(const AtomicString, output, ("output", AtomicString::Con structFromLiteral));
56 return output; 56 return output;
57 } 57 }
58 58
59 bool HTMLOutputElement::supportsFocus() const 59 bool HTMLOutputElement::supportsFocus() const
60 { 60 {
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 } 129 }
130 130
131 131
132 void HTMLOutputElement::trace(Visitor* visitor) 132 void HTMLOutputElement::trace(Visitor* visitor)
133 { 133 {
134 visitor->trace(m_tokens); 134 visitor->trace(m_tokens);
135 HTMLFormControlElement::trace(visitor); 135 HTMLFormControlElement::trace(visitor);
136 } 136 }
137 137
138 } // namespace 138 } // namespace
OLDNEW
« no previous file with comments | « Source/core/html/HTMLOptionElement.cpp ('k') | Source/core/html/HTMLProgressElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698