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

Unified Diff: content/browser/accessibility/browser_accessibility_manager.h

Issue 7966013: Rewrite renderer accessibility to not use WebAccessibilityCache. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 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: content/browser/accessibility/browser_accessibility_manager.h
===================================================================
--- content/browser/accessibility/browser_accessibility_manager.h (revision 103158)
+++ content/browser/accessibility/browser_accessibility_manager.h (working copy)
@@ -126,27 +126,11 @@
BrowserAccessibilityFactory* factory);
private:
- // Type is a ViewHostMsg_AccessibilityNotification_Type::int.
- // We pass it as int so that we don't include the render message declaration
- // header here.
- void OnSimpleAccessibilityNotification(
- const WebAccessibility& acc_obj,
- int type,
- bool include_children);
-
- void OnAccessibilityObjectFocusChange(
- const WebAccessibility& acc_obj);
- void OnAccessibilityObjectLoadComplete(
- const WebAccessibility& acc_obj);
-
// Update an accessibility node with an updated WebAccessibility node
// received from the renderer process. When |include_children| is true
// the node's children will also be updated, otherwise only the node
- // itself is updated. Returns the updated node or NULL if no node was
- // updated.
- BrowserAccessibility* UpdateNode(
- const WebAccessibility& src,
- bool include_children);
+ // itself is updated.
+ void UpdateNode(const WebAccessibility& src, bool include_children);
// Recursively build a tree of BrowserAccessibility objects from
// the WebAccessibility tree received from the renderer process.

Powered by Google App Engine
This is Rietveld 408576698