| Index: content/browser/accessibility/browser_accessibility_manager_win.h
|
| diff --git a/content/browser/accessibility/browser_accessibility_manager_win.h b/content/browser/accessibility/browser_accessibility_manager_win.h
|
| index be0b5d9f371bf8c5c9ee0981afe20318b6180fc0..42c7da8f99d95179e217e7a0ebc5472600aa3981 100644
|
| --- a/content/browser/accessibility/browser_accessibility_manager_win.h
|
| +++ b/content/browser/accessibility/browser_accessibility_manager_win.h
|
| @@ -43,10 +43,11 @@ class CONTENT_EXPORT BrowserAccessibilityManagerWin
|
| void OnIAccessible2Used() override;
|
|
|
| // BrowserAccessibilityManager methods
|
| - void OnWindowFocused() override;
|
| void UserIsReloading() override;
|
| void NotifyAccessibilityEvent(
|
| ui::AXEvent event_type, BrowserAccessibility* node) override;
|
| + bool CanFireEvents() override;
|
| + void FireFocusEvent(BrowserAccessibility* node) override;
|
|
|
| // Track this object and post a VISIBLE_DATA_CHANGED notification when
|
| // its container scrolls.
|
| @@ -74,14 +75,6 @@ class CONTENT_EXPORT BrowserAccessibilityManagerWin
|
| // TODO(dmazzoni): remove once http://crbug.com/113483 is fixed.
|
| BrowserAccessibilityWin* tracked_scroll_object_;
|
|
|
| - // Set to true if we need to fire a focus event on the root as soon as
|
| - // possible.
|
| - bool focus_event_on_root_needed_;
|
| -
|
| - // A flag to keep track of if we're inside the OnWindowFocused call stack
|
| - // so we don't keep calling it recursively.
|
| - bool inside_on_window_focused_;
|
| -
|
| DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityManagerWin);
|
| };
|
|
|
|
|