Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(428)

Unified Diff: third_party/WebKit/Source/core/html/HTMLProgressElement.h

Issue 1957593003: Simplify PROGRESS shadow elements. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/html/HTMLProgressElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/html/HTMLProgressElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698