| 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 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 BLINK_EXPORT void setScrollOffset(const WebPoint&) const; | 291 BLINK_EXPORT void setScrollOffset(const WebPoint&) const; |
| 292 | 292 |
| 293 // Make this object visible by scrolling as many nested scrollable views as
needed. | 293 // Make this object visible by scrolling as many nested scrollable views as
needed. |
| 294 BLINK_EXPORT void scrollToMakeVisible() const; | 294 BLINK_EXPORT void scrollToMakeVisible() const; |
| 295 // Same, but if the whole object can't be made visible, try for this subrect
, in local coordinates. | 295 // Same, but if the whole object can't be made visible, try for this subrect
, in local coordinates. |
| 296 BLINK_EXPORT void scrollToMakeVisibleWithSubFocus(const WebRect&) const; | 296 BLINK_EXPORT void scrollToMakeVisibleWithSubFocus(const WebRect&) const; |
| 297 // Scroll this object to a given point in global coordinates of the top-leve
l window. | 297 // Scroll this object to a given point in global coordinates of the top-leve
l window. |
| 298 BLINK_EXPORT void scrollToGlobalPoint(const WebPoint&) const; | 298 BLINK_EXPORT void scrollToGlobalPoint(const WebPoint&) const; |
| 299 | 299 |
| 300 #if BLINK_IMPLEMENTATION | 300 #if BLINK_IMPLEMENTATION |
| 301 WebAXObject(const WTF::PassRefPtr<AXObject>&); | 301 WebAXObject(const PassRefPtrWillBeRawPtr<AXObject>&); |
| 302 WebAXObject& operator=(const WTF::PassRefPtr<AXObject>&); | 302 WebAXObject& operator=(const PassRefPtrWillBeRawPtr<AXObject>&); |
| 303 operator WTF::PassRefPtr<AXObject>() const; | 303 operator PassRefPtrWillBeRawPtr<AXObject>() const; |
| 304 #endif | 304 #endif |
| 305 | 305 |
| 306 private: | 306 private: |
| 307 WebPrivatePtr<AXObject> m_private; | 307 WebPrivatePtr<AXObject> m_private; |
| 308 }; | 308 }; |
| 309 | 309 |
| 310 } // namespace blink | 310 } // namespace blink |
| 311 | 311 |
| 312 #endif | 312 #endif |
| OLD | NEW |