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

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXRadioInput.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/AXRadioInput.cpp
diff --git a/third_party/WebKit/Source/modules/accessibility/AXRadioInput.cpp b/third_party/WebKit/Source/modules/accessibility/AXRadioInput.cpp
index cd9b6bb5de3132c9a209335f1c080322a9893263..8afac6846cecd387fed90d95783b0a829ad1bd50 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXRadioInput.cpp
+++ b/third_party/WebKit/Source/modules/accessibility/AXRadioInput.cpp
@@ -20,7 +20,8 @@ AXRadioInput::AXRadioInput(LayoutObject* layoutObject,
// Updates posInSet and setSize for the current object and the next objects.
if (!calculatePosInSet())
return;
- // When a new object is inserted, it needs to update setSize for the previous objects.
+ // When a new object is inserted, it needs to update setSize for the previous
+ // objects.
requestUpdateToNextNode(false);
}
@@ -45,8 +46,9 @@ void AXRadioInput::requestUpdateToNextNode(bool forward) {
int position = 0;
if (forward)
position = posInSet() + 1;
- // If it is backward, it keeps position as positions are already assigned for previous objects.
- // updatePosAndSetSize() is called with '0' and it doesn't modify m_posInSet and updates m_setSize as size is increased.
+ // If it is backward, it keeps position as positions are already assigned for
+ // previous objects. updatePosAndSetSize() is called with '0' and it doesn't
+ // modify m_posInSet and updates m_setSize as size is increased.
toAXRadioInput(nextAXobject)->updatePosAndSetSize(position);
axObjectCache().postNotification(nextAXobject,
@@ -76,15 +78,16 @@ int AXRadioInput::setSize() const {
bool AXRadioInput::calculatePosInSet() {
// Calculate 'posInSet' attribute when AXRadioInputs need to be updated
- // as a new AXRadioInput Object is added or one of objects from RadioGroup is removed.
+ // as a new AXRadioInput Object is added or one of objects from RadioGroup is
+ // removed.
bool needToUpdatePrev = false;
int position = 1;
HTMLInputElement* prevElement =
RadioInputType::nextRadioButtonInGroup(element(), false);
if (prevElement) {
AXObject* object = axObjectCache().get(prevElement);
- // If the previous element doesn't have AXObject yet, caculate position from the first element.
- // Otherwise, get position from the previous AXObject.
+ // If the previous element doesn't have AXObject yet, caculate position from
+ // the first element. Otherwise, get position from the previous AXObject.
if (!object || !object->isAXRadioInput()) {
position = countFromFirstElement();
} else {

Powered by Google App Engine
This is Rietveld 408576698