Title: [147615] trunk/Source/WebCore
- Revision
- 147615
- Author
- [email protected]
- Date
- 2013-04-04 01:39:23 -0700 (Thu, 04 Apr 2013)
Log Message
[ATK] build fails when accessibility is turned off
https://bugs.webkit.org/show_bug.cgi?id=113699
Patch by Ed Bartosh <[email protected]> on 2013-04-04
Reviewed by Gyuyoung Kim.
* editing/atk/FrameSelectionAtk.cpp: Wrapped accessibility code in #if HAVE(ACCESSIBILITY)
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (147614 => 147615)
--- trunk/Source/WebCore/ChangeLog 2013-04-04 07:59:47 UTC (rev 147614)
+++ trunk/Source/WebCore/ChangeLog 2013-04-04 08:39:23 UTC (rev 147615)
@@ -1,3 +1,12 @@
+2013-04-04 Ed Bartosh <[email protected]>
+
+ [ATK] build fails when accessibility is turned off
+ https://bugs.webkit.org/show_bug.cgi?id=113699
+
+ Reviewed by Gyuyoung Kim.
+
+ * editing/atk/FrameSelectionAtk.cpp: Wrapped accessibility code in #if HAVE(ACCESSIBILITY)
+
2013-04-04 Seokju Kwon <[email protected]>
Web Inspector: fix closure compiler warnings in the profiler code HeapSnapshotDataGrids.js
Modified: trunk/Source/WebCore/editing/atk/FrameSelectionAtk.cpp (147614 => 147615)
--- trunk/Source/WebCore/editing/atk/FrameSelectionAtk.cpp 2013-04-04 07:59:47 UTC (rev 147614)
+++ trunk/Source/WebCore/editing/atk/FrameSelectionAtk.cpp 2013-04-04 08:39:23 UTC (rev 147615)
@@ -20,6 +20,8 @@
#include "config.h"
#include "FrameSelection.h"
+#if HAVE(ACCESSIBILITY)
+
#include "AXObjectCache.h"
#include "Frame.h"
#include "WebKitAccessibleWrapperAtk.h"
@@ -107,3 +109,5 @@
}
} // namespace WebCore
+
+#endif // HAVE(ACCESSIBILITY)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes