OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). | 2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
3 * | 3 * |
4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
8 * | 8 * |
9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 23 matching lines...) Expand all Loading... |
34 #include "core/rendering/RenderMeter.h" | 34 #include "core/rendering/RenderMeter.h" |
35 #include "core/rendering/RenderTheme.h" | 35 #include "core/rendering/RenderTheme.h" |
36 | 36 |
37 namespace blink { | 37 namespace blink { |
38 | 38 |
39 using namespace HTMLNames; | 39 using namespace HTMLNames; |
40 | 40 |
41 HTMLMeterElement::HTMLMeterElement(Document& document) | 41 HTMLMeterElement::HTMLMeterElement(Document& document) |
42 : LabelableElement(meterTag, document) | 42 : LabelableElement(meterTag, document) |
43 { | 43 { |
44 ScriptWrappable::init(this); | |
45 UseCounter::count(document, UseCounter::MeterElement); | 44 UseCounter::count(document, UseCounter::MeterElement); |
46 } | 45 } |
47 | 46 |
48 HTMLMeterElement::~HTMLMeterElement() | 47 HTMLMeterElement::~HTMLMeterElement() |
49 { | 48 { |
50 } | 49 } |
51 | 50 |
52 PassRefPtrWillBeRawPtr<HTMLMeterElement> HTMLMeterElement::create(Document& docu
ment) | 51 PassRefPtrWillBeRawPtr<HTMLMeterElement> HTMLMeterElement::create(Document& docu
ment) |
53 { | 52 { |
54 RefPtrWillBeRawPtr<HTMLMeterElement> meter = adoptRefWillBeNoop(new HTMLMete
rElement(document)); | 53 RefPtrWillBeRawPtr<HTMLMeterElement> meter = adoptRefWillBeNoop(new HTMLMete
rElement(document)); |
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 inner->appendChild(bar); | 212 inner->appendChild(bar); |
214 } | 213 } |
215 | 214 |
216 void HTMLMeterElement::trace(Visitor* visitor) | 215 void HTMLMeterElement::trace(Visitor* visitor) |
217 { | 216 { |
218 visitor->trace(m_value); | 217 visitor->trace(m_value); |
219 LabelableElement::trace(visitor); | 218 LabelableElement::trace(visitor); |
220 } | 219 } |
221 | 220 |
222 } // namespace | 221 } // namespace |
OLD | NEW |