Index: webkit/glue/glue_accessibility.h |
diff --git a/webkit/glue/glue_accessibility.h b/webkit/glue/glue_accessibility.h |
index 1423e44e24359cab0266b6452542879f5c2681d0..35cff0b4a16128d47b2d3fc675721be590ce92b3 100644 |
--- a/webkit/glue/glue_accessibility.h |
+++ b/webkit/glue/glue_accessibility.h |
@@ -5,6 +5,12 @@ |
#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> |
@@ -67,4 +73,11 @@ class GlueAccessibility { |
DISALLOW_COPY_AND_ASSIGN(GlueAccessibility); |
}; |
+#else // defined(OS_WIN) |
+ |
+class GlueAccessibility { |
+}; |
+ |
+#endif |
+ |
#endif // WEBKIT_GLUE_GLUE_ACCESSIBILITY_H_ |