summaryrefslogtreecommitdiffstats
path: root/webkit/port
diff options
context:
space:
mode:
authorpinkerton@google.com <pinkerton@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-09-16 20:06:28 +0000
committerpinkerton@google.com <pinkerton@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-09-16 20:06:28 +0000
commitdf5d5c04bfd7afee66d5eec756d90c79ecfde4e6 (patch)
tree57f891195b98574f510fbacce53341d145066de0 /webkit/port
parent372489aa7d096bd886d4f58abf712df5cbd57d6a (diff)
downloadchromium_src-df5d5c04bfd7afee66d5eec756d90c79ecfde4e6.zip
chromium_src-df5d5c04bfd7afee66d5eec756d90c79ecfde4e6.tar.gz
chromium_src-df5d5c04bfd7afee66d5eec756d90c79ecfde4e6.tar.bz2
Stub out a11y routines for mac for linking
Review URL: http://codereview.chromium.org/2903 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2274 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/port')
-rw-r--r--webkit/port/page/AXObjectCacheMac.cpp66
1 files changed, 66 insertions, 0 deletions
diff --git a/webkit/port/page/AXObjectCacheMac.cpp b/webkit/port/page/AXObjectCacheMac.cpp
new file mode 100644
index 0000000..bc187fe
--- /dev/null
+++ b/webkit/port/page/AXObjectCacheMac.cpp
@@ -0,0 +1,66 @@
+/*
+ * Copyright (C) 2008 Apple Inc. All Rights Reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
+ * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
+ * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+
+#include "config.h"
+#include "AXObjectCache.h"
+
+#include "AccessibilityObject.h"
+
+// TODO(pinkerton): fill in all of these. We probably don't want to use the
+// same WebCoreAXObjects as regular WebCore, but we'll figure that out later.
+
+namespace WebCore {
+
+void AXObjectCache::detachWrapper(AccessibilityObject* obj)
+{
+}
+
+void AXObjectCache::attachWrapper(AccessibilityObject*)
+{
+}
+
+void AXObjectCache::postNotification(RenderObject*, const String&)
+{
+}
+
+void AXObjectCache::postNotificationToElement(RenderObject*, const String&)
+{
+}
+
+void AXObjectCache::handleFocusedUIElementChanged()
+{
+}
+
+AXID AXObjectCache::getAXID(AccessibilityObject*)
+{
+ return AXID();
+}
+
+void AXObjectCache::removeAXID(AccessibilityObject*)
+{
+}
+
+} // namespace WebCore