| 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 27 matching lines...) Expand all Loading... |
| 38 static PassRefPtrWillBeRawPtr<HTMLProgressElement> create(Document&); | 38 static PassRefPtrWillBeRawPtr<HTMLProgressElement> create(Document&); |
| 39 | 39 |
| 40 double value() const; | 40 double value() const; |
| 41 void setValue(double); | 41 void setValue(double); |
| 42 | 42 |
| 43 double max() const; | 43 double max() const; |
| 44 void setMax(double); | 44 void setMax(double); |
| 45 | 45 |
| 46 double position() const; | 46 double position() const; |
| 47 | 47 |
| 48 virtual bool canContainRangeEndPoint() const override { return false; } | 48 bool canContainRangeEndPoint() const override { return false; } |
| 49 | 49 |
| 50 DECLARE_VIRTUAL_TRACE(); | 50 DECLARE_VIRTUAL_TRACE(); |
| 51 | 51 |
| 52 private: | 52 private: |
| 53 explicit HTMLProgressElement(Document&); | 53 explicit HTMLProgressElement(Document&); |
| 54 virtual ~HTMLProgressElement(); | 54 ~HTMLProgressElement() override; |
| 55 | 55 |
| 56 virtual bool areAuthorShadowsAllowed() const override { return false; } | 56 bool areAuthorShadowsAllowed() const override { return false; } |
| 57 virtual void willAddFirstOpenShadowRoot() override; | 57 void willAddFirstOpenShadowRoot() override; |
| 58 virtual bool shouldAppearIndeterminate() const override; | 58 bool shouldAppearIndeterminate() const override; |
| 59 virtual bool supportLabels() const override { return true; } | 59 bool supportLabels() const override { return true; } |
| 60 | 60 |
| 61 virtual LayoutObject* createLayoutObject(const ComputedStyle&) override; | 61 LayoutObject* createLayoutObject(const ComputedStyle&) override; |
| 62 LayoutProgress* layoutProgress() const; | 62 LayoutProgress* layoutProgress() const; |
| 63 | 63 |
| 64 virtual void parseAttribute(const QualifiedName&, const AtomicString&) overr
ide; | 64 void parseAttribute(const QualifiedName&, const AtomicString&) override; |
| 65 | 65 |
| 66 virtual void attach(const AttachContext& = AttachContext()) override; | 66 void attach(const AttachContext& = AttachContext()) override; |
| 67 | 67 |
| 68 void didElementStateChange(); | 68 void didElementStateChange(); |
| 69 virtual void didAddUserAgentShadowRoot(ShadowRoot&) override; | 69 void didAddUserAgentShadowRoot(ShadowRoot&) override; |
| 70 bool isDeterminate() const; | 70 bool isDeterminate() const; |
| 71 | 71 |
| 72 RawPtrWillBeMember<ProgressValueElement> m_value; | 72 RawPtrWillBeMember<ProgressValueElement> m_value; |
| 73 }; | 73 }; |
| 74 | 74 |
| 75 } // namespace blink | 75 } // namespace blink |
| 76 | 76 |
| 77 #endif // HTMLProgressElement_h | 77 #endif // HTMLProgressElement_h |
| OLD | NEW |