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

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXARIAGrid.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
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/accessibility/AXLayoutObject.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/accessibility/AXARIAGrid.cpp
diff --git a/third_party/WebKit/Source/modules/accessibility/AXARIAGrid.cpp b/third_party/WebKit/Source/modules/accessibility/AXARIAGrid.cpp
index 08f14723c3c0cfdded7b6c97a50394cd9a680ad7..2fa3906937bf4ede6389e891b01ad3140651e2fc 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXARIAGrid.cpp
+++ b/third_party/WebKit/Source/modules/accessibility/AXARIAGrid.cpp
@@ -100,12 +100,14 @@ void AXARIAGrid::addChildren() {
unsigned columnCount = 0;
for (const auto& child : children) {
if (!addTableRowChild(child, appendedRows, columnCount)) {
- // in case the layout tree doesn't match the expected ARIA hierarchy, look at the children
+ // in case the layout tree doesn't match the expected ARIA hierarchy, look
+ // at the children
if (!child->hasChildren())
child->addChildren();
- // The children of this non-row will contain all non-ignored elements (recursing to find them).
- // This allows the table to dive arbitrarily deep to find the rows.
+ // The children of this non-row will contain all non-ignored elements
+ // (recursing to find them). This allows the table to dive arbitrarily
+ // deep to find the rows.
for (const auto& childObject : child->children())
addTableRowChild(childObject.get(), appendedRows, columnCount);
}
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/accessibility/AXLayoutObject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698