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

Side by Side Diff: content/browser/accessibility/browser_accessibility_manager.cc

Issue 8775059: Relanding http://codereview.chromium.org/8416034 (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Split initialization of BrowserAccessibility tree into pre and post phases. Created 9 years 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/browser/accessibility/browser_accessibility_manager.h" 5 #include "content/browser/accessibility/browser_accessibility_manager.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "content/browser/accessibility/browser_accessibility.h" 8 #include "content/browser/accessibility/browser_accessibility.h"
9 #include "content/common/view_messages.h" 9 #include "content/common/view_messages.h"
10 10
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 // If we can't find the node to replace, we're out of sync with the 233 // If we can't find the node to replace, we're out of sync with the
234 // renderer (this would be a bug). 234 // renderer (this would be a bug).
235 DCHECK(current); 235 DCHECK(current);
236 if (!current) 236 if (!current)
237 return; 237 return;
238 238
239 // If this update is just for a single node (|include_children| is false), 239 // If this update is just for a single node (|include_children| is false),
240 // modify |current| directly and return - no tree changes are needed. 240 // modify |current| directly and return - no tree changes are needed.
241 if (!include_children) { 241 if (!include_children) {
242 DCHECK_EQ(0U, src.children.size()); 242 DCHECK_EQ(0U, src.children.size());
243 current->Initialize( 243 current->PreInitialize(
244 this, 244 this,
245 current->parent(), 245 current->parent(),
246 current->child_id(), 246 current->child_id(),
247 current->index_in_parent(), 247 current->index_in_parent(),
248 src); 248 src);
249 current->SendNodeUpdateEvents(); 249 current->SendNodeUpdateEvents();
dmazzoni 2011/12/02 23:33:42 You should call PostInitialize here, right?
David Tseng 2011/12/03 00:17:13 Done.
250 return; 250 return;
251 } 251 }
252 252
253 BrowserAccessibility* current_parent = current->parent(); 253 BrowserAccessibility* current_parent = current->parent();
254 int current_index_in_parent = current->index_in_parent(); 254 int current_index_in_parent = current->index_in_parent();
255 255
256 // Detach all of the nodes in the old tree and get a single flat vector 256 // Detach all of the nodes in the old tree and get a single flat vector
257 // of all node pointers. 257 // of all node pointers.
258 std::vector<BrowserAccessibility*> old_tree_nodes; 258 std::vector<BrowserAccessibility*> old_tree_nodes;
259 current->DetachTree(&old_tree_nodes); 259 current->DetachTree(&old_tree_nodes);
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 instance->UpdateParent(parent, index_in_parent); 314 instance->UpdateParent(parent, index_in_parent);
315 instance->InternalAddReference(); 315 instance->InternalAddReference();
316 send_show_events = false; 316 send_show_events = false;
317 } else { 317 } else {
318 // Otherwise, create a new instance. 318 // Otherwise, create a new instance.
319 instance = factory_->Create(); 319 instance = factory_->Create();
320 child_id = GetNextChildID(); 320 child_id = GetNextChildID();
321 children_can_send_show_events = false; 321 children_can_send_show_events = false;
322 } 322 }
323 323
324 instance->Initialize(this, parent, child_id, index_in_parent, src); 324 instance->PreInitialize(this, parent, child_id, index_in_parent, src);
325 for (int i = 0; i < static_cast<int>(src.children.size()); ++i) {
326 BrowserAccessibility* child = CreateAccessibilityTree(
327 instance, src.children[i], i, children_can_send_show_events);
328 instance->AddChild(child);
329 }
330 instance->PostInitialize(this, parent, child_id, index_in_parent, src);
331
325 child_id_map_[child_id] = instance; 332 child_id_map_[child_id] = instance;
326 renderer_id_to_child_id_map_[src.id] = child_id; 333 renderer_id_to_child_id_map_[src.id] = child_id;
327 334
328 if (src.role == WebAccessibility::ROLE_ROOT_WEB_AREA) 335 if (src.role == WebAccessibility::ROLE_ROOT_WEB_AREA)
329 root_ = instance; 336 root_ = instance;
330 337
331 if ((src.state >> WebAccessibility::STATE_FOCUSED) & 1) 338 if ((src.state >> WebAccessibility::STATE_FOCUSED) & 1)
332 SetFocus(instance, false); 339 SetFocus(instance, false);
333 for (int i = 0; i < static_cast<int>(src.children.size()); ++i) {
334 BrowserAccessibility* child = CreateAccessibilityTree(
335 instance, src.children[i], i, children_can_send_show_events);
336 instance->AddChild(child);
337 }
338 340
339 // Note: the purpose of send_show_events and children_can_send_show_events 341 // Note: the purpose of send_show_events and children_can_send_show_events
340 // is so that we send a single OBJECT_SHOW event for the root of a subtree 342 // is so that we send a single OBJECT_SHOW event for the root of a subtree
341 // that just appeared for the first time, but not on any descendant of 343 // that just appeared for the first time, but not on any descendant of
342 // that subtree. 344 // that subtree.
343 if (send_show_events) 345 if (send_show_events)
344 NotifyAccessibilityEvent(ViewHostMsg_AccEvent::OBJECT_SHOW, instance); 346 NotifyAccessibilityEvent(ViewHostMsg_AccEvent::OBJECT_SHOW, instance);
345 347
346 instance->SendNodeUpdateEvents(); 348 instance->SendNodeUpdateEvents();
dmazzoni 2011/12/02 23:33:42 Can you combine SendNodeUpdateEvents with PostInit
David Tseng 2011/12/03 00:17:13 Done, though this doesn't exactly fit your usage o
347 349
348 return instance; 350 return instance;
349 } 351 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698