| Index: third_party/WebKit/Source/core/html/HTMLProgressElement.h
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLProgressElement.h b/third_party/WebKit/Source/core/html/HTMLProgressElement.h
|
| index 7ec64d21d2976e6497a0a75d768bb0f0d51ec6b7..20666657012433abdec56152754393943496b6ab 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLProgressElement.h
|
| +++ b/third_party/WebKit/Source/core/html/HTMLProgressElement.h
|
| @@ -26,7 +26,6 @@
|
|
|
| namespace blink {
|
|
|
| -class ProgressValueElement;
|
| class LayoutProgress;
|
|
|
| class CORE_EXPORT HTMLProgressElement final : public LabelableElement {
|
| @@ -67,8 +66,9 @@ private:
|
| void didElementStateChange();
|
| void didAddUserAgentShadowRoot(ShadowRoot&) override;
|
| bool isDeterminate() const;
|
| + void setValueWidthPercentage(double) const;
|
|
|
| - Member<ProgressValueElement> m_value;
|
| + Member<Element> m_value;
|
| };
|
|
|
| } // namespace blink
|
|
|