| Index: content/public/browser/web_contents.h
|
| diff --git a/content/public/browser/web_contents.h b/content/public/browser/web_contents.h
|
| index af944f72e827f267e4b102e4fbc96d61bcc1c451..ed2d07b5b21288a88a93e20ce9e029d56b369fc1 100644
|
| --- a/content/public/browser/web_contents.h
|
| +++ b/content/public/browser/web_contents.h
|
| @@ -306,13 +306,13 @@ class WebContents : public PageNavigator,
|
| virtual void SetUserAgentOverride(const std::string& override) = 0;
|
| virtual const std::string& GetUserAgentOverride() const = 0;
|
|
|
| - // Enable the accessibility tree for this WebContents in the renderer,
|
| - // but don't enable creating a native accessibility tree on the browser
|
| - // side.
|
| - virtual void EnableTreeOnlyAccessibilityMode() = 0;
|
| + // Set the accessibility mode so that accessibility events are forwarded
|
| + // to each WebContentsObserver.
|
| + virtual void EnableWebContentsOnlyAccessibilityMode();
|
|
|
| - // Returns true only if "tree only" accessibility mode is on.
|
| - virtual bool IsTreeOnlyAccessibilityModeForTesting() const = 0;
|
| + // Returns true only if the WebContentsObserver accessibility mode is
|
| + // enabled.
|
| + virtual bool IsWebContentsOnlyAccessibilityModeForTesting() const = 0;
|
|
|
| // Returns true only if complete accessibility mode is on, meaning there's
|
| // both renderer accessibility, and a native browser accessibility tree.
|
|
|