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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 BLINK_EXPORT WebDOMEvent createEvent(const WebString& eventType); | 112 BLINK_EXPORT WebDOMEvent createEvent(const WebString& eventType); |
113 BLINK_EXPORT WebReferrerPolicy referrerPolicy() const; | 113 BLINK_EXPORT WebReferrerPolicy referrerPolicy() const; |
114 BLINK_EXPORT WebElement createElement(const WebString& tagName); | 114 BLINK_EXPORT WebElement createElement(const WebString& tagName); |
115 // Shorthand of frame()->scrollOffset(). | 115 // Shorthand of frame()->scrollOffset(). |
116 BLINK_EXPORT WebSize scrollOffset() const; | 116 BLINK_EXPORT WebSize scrollOffset() const; |
117 // Shorthand of frame()->minimumScrollOffset(). | 117 // Shorthand of frame()->minimumScrollOffset(). |
118 BLINK_EXPORT WebSize minimumScrollOffset() const; | 118 BLINK_EXPORT WebSize minimumScrollOffset() const; |
119 // Shorthand of frame()->maximumScrollOffset(). | 119 // Shorthand of frame()->maximumScrollOffset(). |
120 BLINK_EXPORT WebSize maximumScrollOffset() const; | 120 BLINK_EXPORT WebSize maximumScrollOffset() const; |
121 BLINK_EXPORT void setIsTransitionDocument(); | 121 BLINK_EXPORT void setIsTransitionDocument(); |
| 122 BLINK_EXPORT void setIsTransitionDocument(bool); |
122 BLINK_EXPORT void beginExitTransition(const WebString& cssSelector, bool exi
tToNativeApp); | 123 BLINK_EXPORT void beginExitTransition(const WebString& cssSelector, bool exi
tToNativeApp); |
| 124 BLINK_EXPORT void revertExitTransition(); |
123 BLINK_EXPORT void hideTransitionElements(const WebString& cssSelector); | 125 BLINK_EXPORT void hideTransitionElements(const WebString& cssSelector); |
124 BLINK_EXPORT void showTransitionElements(const WebString& cssSelector); | 126 BLINK_EXPORT void showTransitionElements(const WebString& cssSelector); |
125 | 127 |
126 // Accessibility support. These methods should only be called on the | 128 // Accessibility support. These methods should only be called on the |
127 // top-level document, because one accessibility cache spans all of | 129 // top-level document, because one accessibility cache spans all of |
128 // the documents on the page. | 130 // the documents on the page. |
129 | 131 |
130 // Gets the accessibility object for this document. | 132 // Gets the accessibility object for this document. |
131 BLINK_EXPORT WebAXObject accessibilityObject() const; | 133 BLINK_EXPORT WebAXObject accessibilityObject() const; |
132 | 134 |
(...skipping 16 matching lines...) Expand all Loading... |
149 #if BLINK_IMPLEMENTATION | 151 #if BLINK_IMPLEMENTATION |
150 WebDocument(const PassRefPtrWillBeRawPtr<Document>&); | 152 WebDocument(const PassRefPtrWillBeRawPtr<Document>&); |
151 WebDocument& operator=(const PassRefPtrWillBeRawPtr<Document>&); | 153 WebDocument& operator=(const PassRefPtrWillBeRawPtr<Document>&); |
152 operator PassRefPtrWillBeRawPtr<Document>() const; | 154 operator PassRefPtrWillBeRawPtr<Document>() const; |
153 #endif | 155 #endif |
154 }; | 156 }; |
155 | 157 |
156 } // namespace blink | 158 } // namespace blink |
157 | 159 |
158 #endif | 160 #endif |
OLD | NEW |