summaryrefslogtreecommitdiffstats
path: root/content/renderer/renderer_accessibility_complete.h
Commit message (Collapse)AuthorAgeFilesLines
* Move a bunch of code in content\renderer to the content namespace.jam@chromium.org2012-10-191-2/+1
| | | | | | Review URL: https://codereview.chromium.org/11232014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@163061 0039d316-1c4b-4281-b951-d872f2087c98
* Clean-up inline members of nested classes (content/)hans@chromium.org2012-08-091-2/+2
| | | | | | | | | | | | | | | | Due to a bug, the Clang-plugin style checker failed to warn about inline constructors, destructors, non-empty virtual methods, etc. for nested classes. The plugin has been fixed, and this patch is part of a clean-up of all the code that now causes the plugin to issue errors. BUG=139346 Review URL: https://chromiumcodereview.appspot.com/10825274 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150864 0039d316-1c4b-4281-b951-d872f2087c98
* Remove #pragma once from contentajwong@chromium.org2012-07-111-1/+0
| | | | | | Review URL: https://chromiumcodereview.appspot.com/10696166 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@146071 0039d316-1c4b-4281-b951-d872f2087c98
* Refactor all accessibility code out of webkit/glue.dmazzoni@chromium.org2012-06-121-8/+5
| | | | | | | | | | | | | | | Moves the data definitions into content/common and the serialization code into content/renderer. There are no code changes here, this is just a refactoring. BUG=132129 TEST=none Review URL: https://chromiumcodereview.appspot.com/10544099 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@141768 0039d316-1c4b-4281-b951-d872f2087c98
* New RendererAccessibility implementation that doesn't use WebKit accessibility.dmazzoni@chromium.org2012-06-051-0/+145
Splits RendererAccessibility into a base class and two separate implementations. The new implementation, RendererAccessibilityFocusOnly, does not turn on WebKit's accessibility implementation, but instead only sends minimal accessibility information about the focused node. This should be dramatically faster than the previous implementation and sufficient for supporting the on-screen keyboard in Windows 8. Also updates IsEditableNode to support ARIA role=textbox and adds a complete test. BUG=122061,129434 TEST=Tap on editable text controls to open the Windows 8 on-screen keyboard. Review URL: https://chromiumcodereview.appspot.com/10444132 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@140627 0039d316-1c4b-4281-b951-d872f2087c98