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

Unified Diff: third_party/WebKit/Source/core/svg/SVGEnumeration.cpp

Issue 2390773004: reflow comments in core/svg/ (Closed)
Patch Set: comments (heh!) Created 4 years, 2 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
Index: third_party/WebKit/Source/core/svg/SVGEnumeration.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGEnumeration.cpp b/third_party/WebKit/Source/core/svg/SVGEnumeration.cpp
index de0f080c1953f2e94cab20fffb7a4ecb6bf75baa..3feca34d3b41d144e5d9494e88d06b5f9d065c63 100644
--- a/third_party/WebKit/Source/core/svg/SVGEnumeration.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGEnumeration.cpp
@@ -63,7 +63,8 @@ void SVGEnumerationBase::setValue(unsigned short value) {
SVGParsingError SVGEnumerationBase::setValueAsString(const String& string) {
for (const auto& entry : m_entries) {
if (string == entry.second) {
- // 0 corresponds to _UNKNOWN enumeration values, and should not be settable.
+ // 0 corresponds to _UNKNOWN enumeration values, and should not be
+ // settable.
ASSERT(entry.first);
m_value = entry.first;
notifyChange();
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGEnumeration.h ('k') | third_party/WebKit/Source/core/svg/SVGFEImageElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698