18e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project/*
28e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * Copyright (C) 2008 Apple Inc. All Rights Reserved.
3635860845790a19bf50bbc51ba8fb66a96dde068The Android Open Source Project * Copyright (C) 2008 Google Inc.
48e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *
58e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * Redistribution and use in source and binary forms, with or without
68e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * modification, are permitted provided that the following conditions
78e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * are met:
88e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * 1. Redistributions of source code must retain the above copyright
98e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *    notice, this list of conditions and the following disclaimer.
108e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * 2. Redistributions in binary form must reproduce the above copyright
118e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *    notice, this list of conditions and the following disclaimer in the
128e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *    documentation and/or other materials provided with the distribution.
138e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *
148e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
158e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
168e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
178e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
188e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
198e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
208e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
218e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
228e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
238e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
248e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
258e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project */
268e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
27635860845790a19bf50bbc51ba8fb66a96dde068The Android Open Source Project#ifndef AccessibilityObjectWrapper_h
28635860845790a19bf50bbc51ba8fb66a96dde068The Android Open Source Project#define AccessibilityObjectWrapper_h
298e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
30643ca7872b450ea4efacab6188849e5aac2ba161Steve Block#include <wtf/RefCounted.h>
31643ca7872b450ea4efacab6188849e5aac2ba161Steve Block
32635860845790a19bf50bbc51ba8fb66a96dde068The Android Open Source Projectnamespace WebCore {
33635860845790a19bf50bbc51ba8fb66a96dde068The Android Open Source Project
34635860845790a19bf50bbc51ba8fb66a96dde068The Android Open Source Project    class AccessibilityObject;
35635860845790a19bf50bbc51ba8fb66a96dde068The Android Open Source Project    class AccessibilityObjectWrapper : public RefCounted<AccessibilityObjectWrapper> {
36635860845790a19bf50bbc51ba8fb66a96dde068The Android Open Source Project    public:
37635860845790a19bf50bbc51ba8fb66a96dde068The Android Open Source Project        virtual ~AccessibilityObjectWrapper() {}
38635860845790a19bf50bbc51ba8fb66a96dde068The Android Open Source Project        virtual void detach() = 0;
39635860845790a19bf50bbc51ba8fb66a96dde068The Android Open Source Project        bool attached() const { return m_object; }
40635860845790a19bf50bbc51ba8fb66a96dde068The Android Open Source Project        AccessibilityObject* accessibilityObject() const { return m_object; }
41635860845790a19bf50bbc51ba8fb66a96dde068The Android Open Source Project
42635860845790a19bf50bbc51ba8fb66a96dde068The Android Open Source Project    protected:
43635860845790a19bf50bbc51ba8fb66a96dde068The Android Open Source Project        AccessibilityObjectWrapper(AccessibilityObject* obj)
448f72e70a9fd78eec56623b3a62e68f16b7b27e28Feng Qian            : m_object(obj)
458f72e70a9fd78eec56623b3a62e68f16b7b27e28Feng Qian        {
468f72e70a9fd78eec56623b3a62e68f16b7b27e28Feng Qian        }
47635860845790a19bf50bbc51ba8fb66a96dde068The Android Open Source Project        AccessibilityObjectWrapper() : m_object(0) { }
48635860845790a19bf50bbc51ba8fb66a96dde068The Android Open Source Project
49635860845790a19bf50bbc51ba8fb66a96dde068The Android Open Source Project        AccessibilityObject* m_object;
508e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project    };
518e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
52635860845790a19bf50bbc51ba8fb66a96dde068The Android Open Source Project} // namespace WebCore
53635860845790a19bf50bbc51ba8fb66a96dde068The Android Open Source Project
54635860845790a19bf50bbc51ba8fb66a96dde068The Android Open Source Project#endif
55