| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 BLINK_EXPORT WebDocument GetDocument() const; | 254 BLINK_EXPORT WebDocument GetDocument() const; |
| 255 BLINK_EXPORT bool HasComputedStyle() const; | 255 BLINK_EXPORT bool HasComputedStyle() const; |
| 256 BLINK_EXPORT WebString ComputedStyleDisplay() const; | 256 BLINK_EXPORT WebString ComputedStyleDisplay() const; |
| 257 BLINK_EXPORT bool AccessibilityIsIgnored() const; | 257 BLINK_EXPORT bool AccessibilityIsIgnored() const; |
| 258 BLINK_EXPORT bool LineBreaks(WebVector<int>&) const; | 258 BLINK_EXPORT bool LineBreaks(WebVector<int>&) const; |
| 259 BLINK_EXPORT void Markers(WebVector<WebAXMarkerType>& types, | 259 BLINK_EXPORT void Markers(WebVector<WebAXMarkerType>& types, |
| 260 WebVector<int>& starts, | 260 WebVector<int>& starts, |
| 261 WebVector<int>& ends) const; | 261 WebVector<int>& ends) const; |
| 262 | 262 |
| 263 // Actions | 263 // Actions |
| 264 BLINK_EXPORT WebAXSupportedAction Action() const; | 264 BLINK_EXPORT WebAXDefaultActionVerb Action() const; |
| 265 BLINK_EXPORT bool CanDecrement() const; | 265 BLINK_EXPORT bool CanDecrement() const; |
| 266 BLINK_EXPORT bool CanIncrement() const; | 266 BLINK_EXPORT bool CanIncrement() const; |
| 267 BLINK_EXPORT bool CanPress() const; | 267 BLINK_EXPORT bool CanPress() const; |
| 268 BLINK_EXPORT bool CanSetFocusAttribute() const; | 268 BLINK_EXPORT bool CanSetFocusAttribute() const; |
| 269 BLINK_EXPORT bool CanSetSelectedAttribute() const; | 269 BLINK_EXPORT bool CanSetSelectedAttribute() const; |
| 270 BLINK_EXPORT bool CanSetValueAttribute() const; | 270 BLINK_EXPORT bool CanSetValueAttribute() const; |
| 271 BLINK_EXPORT bool PerformDefaultAction() const; | 271 BLINK_EXPORT bool PerformDefaultAction() const; |
| 272 BLINK_EXPORT bool Press() const; | 272 BLINK_EXPORT bool Press() const; |
| 273 BLINK_EXPORT bool Increment() const; | 273 BLINK_EXPORT bool Increment() const; |
| 274 BLINK_EXPORT bool Decrement() const; | 274 BLINK_EXPORT bool Decrement() const; |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 358 operator AXObjectImpl*() const; | 358 operator AXObjectImpl*() const; |
| 359 #endif | 359 #endif |
| 360 | 360 |
| 361 private: | 361 private: |
| 362 WebPrivatePtr<AXObjectImpl> private_; | 362 WebPrivatePtr<AXObjectImpl> private_; |
| 363 }; | 363 }; |
| 364 | 364 |
| 365 } // namespace blink | 365 } // namespace blink |
| 366 | 366 |
| 367 #endif | 367 #endif |
| OLD | NEW |