| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 explicit HTMLProgressElement(Document&); | 53 explicit HTMLProgressElement(Document&); |
| 54 ~HTMLProgressElement() override; | 54 ~HTMLProgressElement() override; |
| 55 | 55 |
| 56 bool areAuthorShadowsAllowed() const override { return false; } | 56 bool areAuthorShadowsAllowed() const override { return false; } |
| 57 bool shouldAppearIndeterminate() const override; | 57 bool shouldAppearIndeterminate() const override; |
| 58 bool supportLabels() const override { return true; } | 58 bool supportLabels() const override { return true; } |
| 59 | 59 |
| 60 LayoutObject* createLayoutObject(const ComputedStyle&) override; | 60 LayoutObject* createLayoutObject(const ComputedStyle&) override; |
| 61 LayoutProgress* layoutProgress() const; | 61 LayoutProgress* layoutProgress() const; |
| 62 | 62 |
| 63 void parseAttribute(const QualifiedName&, | 63 void parseAttribute(const AttributeModificationParams&) override; |
| 64 const AtomicString&, | |
| 65 const AtomicString&) override; | |
| 66 | 64 |
| 67 void attachLayoutTree(const AttachContext& = AttachContext()) override; | 65 void attachLayoutTree(const AttachContext& = AttachContext()) override; |
| 68 | 66 |
| 69 void didElementStateChange(); | 67 void didElementStateChange(); |
| 70 void didAddUserAgentShadowRoot(ShadowRoot&) override; | 68 void didAddUserAgentShadowRoot(ShadowRoot&) override; |
| 71 bool isDeterminate() const; | 69 bool isDeterminate() const; |
| 72 void setValueWidthPercentage(double) const; | 70 void setValueWidthPercentage(double) const; |
| 73 | 71 |
| 74 Member<Element> m_value; | 72 Member<Element> m_value; |
| 75 }; | 73 }; |
| 76 | 74 |
| 77 } // namespace blink | 75 } // namespace blink |
| 78 | 76 |
| 79 #endif // HTMLProgressElement_h | 77 #endif // HTMLProgressElement_h |
| OLD | NEW |