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

Side by Side Diff: third_party/WebKit/Source/core/html/HTMLProgressElement.h

Issue 2623513005: Introduce Element::AttributeModificationParams (Closed)
Patch Set: Created 3 years, 11 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 unified diff | Download patch
OLDNEW
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
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
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLOutputElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLProgressElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698