| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 void decrementCallback(const CppArgumentList&, CppVariant*); | 133 void decrementCallback(const CppArgumentList&, CppVariant*); |
| 134 void showMenuCallback(const CppArgumentList&, CppVariant*); | 134 void showMenuCallback(const CppArgumentList&, CppVariant*); |
| 135 void pressCallback(const CppArgumentList&, CppVariant*); | 135 void pressCallback(const CppArgumentList&, CppVariant*); |
| 136 void isEqualCallback(const CppArgumentList&, CppVariant*); | 136 void isEqualCallback(const CppArgumentList&, CppVariant*); |
| 137 void addNotificationListenerCallback(const CppArgumentList&, CppVariant*); | 137 void addNotificationListenerCallback(const CppArgumentList&, CppVariant*); |
| 138 void removeNotificationListenerCallback(const CppArgumentList&, CppVariant*)
; | 138 void removeNotificationListenerCallback(const CppArgumentList&, CppVariant*)
; |
| 139 void takeFocusCallback(const CppArgumentList&, CppVariant*); | 139 void takeFocusCallback(const CppArgumentList&, CppVariant*); |
| 140 void scrollToMakeVisibleCallback(const CppArgumentList&, CppVariant*); | 140 void scrollToMakeVisibleCallback(const CppArgumentList&, CppVariant*); |
| 141 void scrollToMakeVisibleWithSubFocusCallback(const CppArgumentList&, CppVari
ant*); | 141 void scrollToMakeVisibleWithSubFocusCallback(const CppArgumentList&, CppVari
ant*); |
| 142 void scrollToGlobalPointCallback(const CppArgumentList&, CppVariant*); | 142 void scrollToGlobalPointCallback(const CppArgumentList&, CppVariant*); |
| 143 void wordStartCallback(const CppArgumentList&, CppVariant*); |
| 144 void wordEndCallback(const CppArgumentList&, CppVariant*); |
| 143 | 145 |
| 144 void fallbackCallback(const CppArgumentList&, CppVariant*); | 146 void fallbackCallback(const CppArgumentList&, CppVariant*); |
| 145 | 147 |
| 146 WebKit::WebAXObject m_accessibilityObject; | 148 WebKit::WebAXObject m_accessibilityObject; |
| 147 Factory* m_factory; | 149 Factory* m_factory; |
| 148 std::vector<CppVariant> m_notificationCallbacks; | 150 std::vector<CppVariant> m_notificationCallbacks; |
| 149 }; | 151 }; |
| 150 | 152 |
| 151 | 153 |
| 152 class RootWebAXObjectProxy : public WebAXObjectProxy { | 154 class RootWebAXObjectProxy : public WebAXObjectProxy { |
| (...skipping 18 matching lines...) Expand all Loading... |
| 171 WebAXObjectProxy* createRoot(const WebKit::WebAXObject&); | 173 WebAXObjectProxy* createRoot(const WebKit::WebAXObject&); |
| 172 | 174 |
| 173 private: | 175 private: |
| 174 typedef std::vector<WebAXObjectProxy*> ElementList; | 176 typedef std::vector<WebAXObjectProxy*> ElementList; |
| 175 ElementList m_elements; | 177 ElementList m_elements; |
| 176 }; | 178 }; |
| 177 | 179 |
| 178 } | 180 } |
| 179 | 181 |
| 180 #endif // WebAXObjectProxy_h | 182 #endif // WebAXObjectProxy_h |
| OLD | NEW |