Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1155)

Unified Diff: webkit/glue/glue_accessibility.h

Issue 18622: POSIX: Porting renderer/render_process.cc, low hanging fruit (Closed)
Patch Set: Created 11 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/renderer/renderer.scons ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_
« no previous file with comments | « chrome/renderer/renderer.scons ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698