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

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXListBoxOption.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/AXListBoxOption.cpp
diff --git a/third_party/WebKit/Source/modules/accessibility/AXListBoxOption.cpp b/third_party/WebKit/Source/modules/accessibility/AXListBoxOption.cpp
index e98c6716e8ceb348ea812381a5d1293265492415..0edd2070bccfdee89a37fd7cc844814896e0a64f 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXListBoxOption.cpp
+++ b/third_party/WebKit/Source/modules/accessibility/AXListBoxOption.cpp
@@ -53,9 +53,10 @@ AccessibilityRole AXListBoxOption::determineAccessibilityRole() {
return m_ariaRole;
// http://www.w3.org/TR/wai-aria/complete#presentation
- // ARIA spec says that the presentation role causes a given element to be treated
- // as having no role or to be removed from the accessibility tree, but does not cause the
- // content contained within the element to be removed from the accessibility tree.
+ // ARIA spec says that the presentation role causes a given element to be
+ // treated as having no role or to be removed from the accessibility tree, but
+ // does not cause the content contained within the element to be removed from
+ // the accessibility tree.
if (isParentPresentationalRole())
return StaticTextRole;
@@ -134,7 +135,8 @@ String AXListBoxOption::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