| Index: Source/core/html/shadow/ProgressShadowElement.h
|
| diff --git a/Source/core/html/shadow/ProgressShadowElement.h b/Source/core/html/shadow/ProgressShadowElement.h
|
| index 7b61f217c80f286c7a013e5e040188aad97e4029..f78db04e140b4e90f11cf2912ec60021ef7dc158 100644
|
| --- a/Source/core/html/shadow/ProgressShadowElement.h
|
| +++ b/Source/core/html/shadow/ProgressShadowElement.h
|
| @@ -48,7 +48,7 @@ protected:
|
| virtual bool rendererIsNeeded(const NodeRenderingContext&);
|
| };
|
|
|
| -class ProgressInnerElement : public ProgressShadowElement {
|
| +class ProgressInnerElement FINAL : public ProgressShadowElement {
|
| public:
|
| ProgressInnerElement(Document*);
|
|
|
| @@ -58,7 +58,7 @@ private:
|
| virtual bool rendererIsNeeded(const NodeRenderingContext&);
|
| };
|
|
|
| -class ProgressBarElement : public ProgressShadowElement {
|
| +class ProgressBarElement FINAL : public ProgressShadowElement {
|
| public:
|
| ProgressBarElement(Document* document)
|
| : ProgressShadowElement(document)
|
| @@ -75,7 +75,7 @@ inline PassRefPtr<ProgressBarElement> ProgressBarElement::create(Document* docum
|
| return adoptRef(new ProgressBarElement(document));
|
| }
|
|
|
| -class ProgressValueElement : public ProgressShadowElement {
|
| +class ProgressValueElement FINAL : public ProgressShadowElement {
|
| public:
|
| ProgressValueElement(Document* document)
|
| : ProgressShadowElement(document)
|
|
|