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

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXMenuListOption.cpp

Issue 2393003002: reflow comments in modules/accessiblity (Closed)
Patch Set: 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/modules/accessibility/AXMenuListOption.cpp
diff --git a/third_party/WebKit/Source/modules/accessibility/AXMenuListOption.cpp b/third_party/WebKit/Source/modules/accessibility/AXMenuListOption.cpp
index 150d2ffab8f5218d1061ac1a4e128897d93dd216..2dce0c7d4e38db07b290215065824f7379308fa5 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXMenuListOption.cpp
+++ b/third_party/WebKit/Source/modules/accessibility/AXMenuListOption.cpp
@@ -62,8 +62,8 @@ Element* AXMenuListOption::actionElement() const {
}
bool AXMenuListOption::isEnabled() const {
- // isDisabledFormControl() returns true if the parent <select> element is disabled,
- // which we don't want.
+ // isDisabledFormControl() returns true if the parent <select> element is
+ // disabled, which we don't want.
return m_element && !m_element->ownElementDisabled();
}
@@ -131,7 +131,8 @@ String AXMenuListOption::textAlternative(bool recursive,
AXNameFrom& nameFrom,
AXRelatedObjectVector* relatedObjects,
NameSources* nameSources) const {
- // If nameSources is non-null, relatedObjects is used in filling it in, so it must be non-null as well.
+ // If nameSources is non-null, relatedObjects is used in filling it in, so it
+ // must be non-null as well.
if (nameSources)
ASSERT(relatedObjects);

Powered by Google App Engine
This is Rietveld 408576698