diff options
author | Steve Block <steveblock@google.com> | 2010-04-29 09:28:33 +0100 |
---|---|---|
committer | Steve Block <steveblock@google.com> | 2010-05-11 14:42:14 +0100 |
commit | a7969e1aef2f2fddbfae2026d34c959e8b07e23b (patch) | |
tree | 6a7a6518fec0890656376592f32aa3a30c8954e2 /WebCore | |
parent | 76acb199cbd556feceab5dd95a6dddddac11b421 (diff) | |
download | external_webkit-a7969e1aef2f2fddbfae2026d34c959e8b07e23b.zip external_webkit-a7969e1aef2f2fddbfae2026d34c959e8b07e23b.tar.gz external_webkit-a7969e1aef2f2fddbfae2026d34c959e8b07e23b.tar.bz2 |
Merge webkit.org at r58033 : Provide link stub for AccessibilityObject::getAttribute
This is used in RenderMenuList. Neither implementation nor call site are guarded
with HAVE(ACCESSIBILITY) but Android does not compile any accessibility code.
See http://trac.webkit.org/changeset/55425
Change-Id: I3e94a80052287d38c6266e4f01b1b31b127e7781
Diffstat (limited to 'WebCore')
-rw-r--r-- | WebCore/platform/android/TemporaryLinkStubs.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/WebCore/platform/android/TemporaryLinkStubs.cpp b/WebCore/platform/android/TemporaryLinkStubs.cpp index 85e6195..c431014 100644 --- a/WebCore/platform/android/TemporaryLinkStubs.cpp +++ b/WebCore/platform/android/TemporaryLinkStubs.cpp @@ -519,6 +519,12 @@ void AXObjectCache::remove(RenderObject*) notImplemented(); } +const AtomicString& AccessibilityObject::getAttribute(Node*, const QualifiedName&) +{ + static const AtomicString emptyString; + return emptyString; +} + #if USE(JSC) using namespace JSC; |