| 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 BLINK_EXPORT WebElementCollection all(); | 105 BLINK_EXPORT WebElementCollection all(); |
| 106 BLINK_EXPORT void forms(WebVector<WebFormElement>&) const; | 106 BLINK_EXPORT void forms(WebVector<WebFormElement>&) const; |
| 107 BLINK_EXPORT WebURL completeURL(const WebString&) const; | 107 BLINK_EXPORT WebURL completeURL(const WebString&) const; |
| 108 BLINK_EXPORT WebElement getElementById(const WebString&) const; | 108 BLINK_EXPORT WebElement getElementById(const WebString&) const; |
| 109 BLINK_EXPORT WebElement focusedElement() const; | 109 BLINK_EXPORT WebElement focusedElement() const; |
| 110 BLINK_EXPORT WebDocumentType doctype() const; | 110 BLINK_EXPORT WebDocumentType doctype() const; |
| 111 BLINK_EXPORT void cancelFullScreen(); | 111 BLINK_EXPORT void cancelFullScreen(); |
| 112 BLINK_EXPORT WebElement fullScreenElement() const; | 112 BLINK_EXPORT WebElement fullScreenElement() const; |
| 113 BLINK_EXPORT WebDOMEvent createEvent(const WebString& eventType); | 113 BLINK_EXPORT WebDOMEvent createEvent(const WebString& eventType); |
| 114 BLINK_EXPORT WebReferrerPolicy referrerPolicy() const; | 114 BLINK_EXPORT WebReferrerPolicy referrerPolicy() const; |
| 115 BLINK_EXPORT WebString outgoingReferrer(); |
| 115 BLINK_EXPORT WebElement createElement(const WebString& tagName); | 116 BLINK_EXPORT WebElement createElement(const WebString& tagName); |
| 116 | 117 |
| 117 // Accessibility support. These methods should only be called on the | 118 // Accessibility support. These methods should only be called on the |
| 118 // top-level document, because one accessibility cache spans all of | 119 // top-level document, because one accessibility cache spans all of |
| 119 // the documents on the page. | 120 // the documents on the page. |
| 120 | 121 |
| 121 // Gets the accessibility object for this document. | 122 // Gets the accessibility object for this document. |
| 122 BLINK_EXPORT WebAXObject accessibilityObject() const; | 123 BLINK_EXPORT WebAXObject accessibilityObject() const; |
| 123 | 124 |
| 124 // Gets the accessibility object for an object on this page by ID. | 125 // Gets the accessibility object for an object on this page by ID. |
| (...skipping 16 matching lines...) Expand all Loading... |
| 141 #if BLINK_IMPLEMENTATION | 142 #if BLINK_IMPLEMENTATION |
| 142 WebDocument(const PassRefPtrWillBeRawPtr<Document>&); | 143 WebDocument(const PassRefPtrWillBeRawPtr<Document>&); |
| 143 WebDocument& operator=(const PassRefPtrWillBeRawPtr<Document>&); | 144 WebDocument& operator=(const PassRefPtrWillBeRawPtr<Document>&); |
| 144 operator PassRefPtrWillBeRawPtr<Document>() const; | 145 operator PassRefPtrWillBeRawPtr<Document>() const; |
| 145 #endif | 146 #endif |
| 146 }; | 147 }; |
| 147 | 148 |
| 148 } // namespace blink | 149 } // namespace blink |
| 149 | 150 |
| 150 #endif | 151 #endif |
| OLD | NEW |