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 26 matching lines...) Expand all Loading... |
37 | 37 |
38 using namespace HTMLNames; | 38 using namespace HTMLNames; |
39 | 39 |
40 const double HTMLProgressElement::IndeterminatePosition = -1; | 40 const double HTMLProgressElement::IndeterminatePosition = -1; |
41 const double HTMLProgressElement::InvalidPosition = -2; | 41 const double HTMLProgressElement::InvalidPosition = -2; |
42 | 42 |
43 HTMLProgressElement::HTMLProgressElement(Document& document) | 43 HTMLProgressElement::HTMLProgressElement(Document& document) |
44 : LabelableElement(progressTag, document) | 44 : LabelableElement(progressTag, document) |
45 , m_value(nullptr) | 45 , m_value(nullptr) |
46 { | 46 { |
47 ScriptWrappable::init(this); | |
48 UseCounter::count(document, UseCounter::ProgressElement); | 47 UseCounter::count(document, UseCounter::ProgressElement); |
49 } | 48 } |
50 | 49 |
51 HTMLProgressElement::~HTMLProgressElement() | 50 HTMLProgressElement::~HTMLProgressElement() |
52 { | 51 { |
53 } | 52 } |
54 | 53 |
55 PassRefPtrWillBeRawPtr<HTMLProgressElement> HTMLProgressElement::create(Document
& document) | 54 PassRefPtrWillBeRawPtr<HTMLProgressElement> HTMLProgressElement::create(Document
& document) |
56 { | 55 { |
57 RefPtrWillBeRawPtr<HTMLProgressElement> progress = adoptRefWillBeNoop(new HT
MLProgressElement(document)); | 56 RefPtrWillBeRawPtr<HTMLProgressElement> progress = adoptRefWillBeNoop(new HT
MLProgressElement(document)); |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 return !isDeterminate(); | 171 return !isDeterminate(); |
173 } | 172 } |
174 | 173 |
175 void HTMLProgressElement::trace(Visitor* visitor) | 174 void HTMLProgressElement::trace(Visitor* visitor) |
176 { | 175 { |
177 visitor->trace(m_value); | 176 visitor->trace(m_value); |
178 LabelableElement::trace(visitor); | 177 LabelableElement::trace(visitor); |
179 } | 178 } |
180 | 179 |
181 } // namespace | 180 } // namespace |
OLD | NEW |