summaryrefslogtreecommitdiffstats
path: root/webkit/glue
diff options
context:
space:
mode:
authorjrg@chromium.org <jrg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-01-27 19:04:50 +0000
committerjrg@chromium.org <jrg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-01-27 19:04:50 +0000
commit2c62b561f63579ac835af49ba233c56ca03417ca (patch)
tree83db5b274cfc8d90b126f473268eb78fcfb97e8d /webkit/glue
parent3bfd411d26d35f46fd0b2b11e0849f0acc174e39 (diff)
downloadchromium_src-2c62b561f63579ac835af49ba233c56ca03417ca.zip
chromium_src-2c62b561f63579ac835af49ba233c56ca03417ca.tar.gz
chromium_src-2c62b561f63579ac835af49ba233c56ca03417ca.tar.bz2
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
Diffstat (limited to 'webkit/glue')
-rw-r--r--webkit/glue/glue_accessibility.h23
1 files changed, 8 insertions, 15 deletions
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 <oleacc.h>
-#include <hash_map>
+#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 <typename T> class COMPtr;
-typedef stdext::hash_map<int, scoped_refptr<IAccessible> > IntToIAccessibleMap;
-typedef stdext::hash_map<IAccessible*, int> IAccessibleToIntMap;
+typedef base::hash_map<int, scoped_refptr<IAccessible> > IntToIAccessibleMap;
+typedef base::hash_map<IAccessible*, int> 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_