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

Unified Diff: chrome/browser/ui/aura/accessibility/ax_root_obj_wrapper.cc

Issue 2860883003: A11y: Add/refactor methods for manipulating bitfields on AXNodeData. (Closed)
Patch Set: Delete AXNodeData::Init() and clear bitfields in AXNodeData() instead. Created 3 years, 7 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: chrome/browser/ui/aura/accessibility/ax_root_obj_wrapper.cc
diff --git a/chrome/browser/ui/aura/accessibility/ax_root_obj_wrapper.cc b/chrome/browser/ui/aura/accessibility/ax_root_obj_wrapper.cc
index a512660bbf4dd6d65ad3d5c1fb051d2289f6fa4e..1d5acd8500c735fc19ec5092c31eec4db9388679 100644
--- a/chrome/browser/ui/aura/accessibility/ax_root_obj_wrapper.cc
+++ b/chrome/browser/ui/aura/accessibility/ax_root_obj_wrapper.cc
@@ -54,7 +54,6 @@ void AXRootObjWrapper::GetChildren(
void AXRootObjWrapper::Serialize(ui::AXNodeData* out_node_data) {
out_node_data->id = id_;
out_node_data->role = ui::AX_ROLE_DESKTOP;
- out_node_data->state = 0;
out_node_data->AddStringAttribute(ui::AX_ATTR_CHROME_CHANNEL,
chrome::GetChannelString());
}

Powered by Google App Engine
This is Rietveld 408576698