From 2c62b561f63579ac835af49ba233c56ca03417ca Mon Sep 17 00:00:00 2001 From: "jrg@chromium.org" Date: Tue, 27 Jan 2009 19:04:50 +0000 Subject: render_* work. Review URL: http://codereview.chromium.org/18650 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8732 0039d316-1c4b-4281-b951-d872f2087c98 --- webkit/glue/glue_accessibility.h | 23 ++++++++--------------- 1 file changed, 8 insertions(+), 15 deletions(-) (limited to 'webkit/glue') diff --git a/webkit/glue/glue_accessibility.h b/webkit/glue/glue_accessibility.h index 35cff0b..b801582 100644 --- a/webkit/glue/glue_accessibility.h +++ b/webkit/glue/glue_accessibility.h @@ -5,23 +5,23 @@ #ifndef WEBKIT_GLUE_GLUE_ACCESSIBILITY_H_ #define WEBKIT_GLUE_GLUE_ACCESSIBILITY_H_ -#include "build/build_config.h" - #if defined(OS_WIN) -// TODO(port): For the moment, this whole file is skipped because it uses COM -// interfaces etc. - #include -#include +#else +// TODO(port): need an equivalent of +// http://msdn.microsoft.com/en-us/library/accessibility.iaccessible.aspx +class IAccessible; +#endif +#include "base/hash_tables.h" #include "chrome/common/render_messages.h" class WebView; template class COMPtr; -typedef stdext::hash_map > IntToIAccessibleMap; -typedef stdext::hash_map IAccessibleToIntMap; +typedef base::hash_map > IntToIAccessibleMap; +typedef base::hash_map IAccessibleToIntMap; //////////////////////////////////////////////////////////////////////////////// // @@ -73,11 +73,4 @@ class GlueAccessibility { DISALLOW_COPY_AND_ASSIGN(GlueAccessibility); }; -#else // defined(OS_WIN) - -class GlueAccessibility { -}; - -#endif - #endif // WEBKIT_GLUE_GLUE_ACCESSIBILITY_H_ -- cgit v1.1