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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 | 81 |
82 BLINK_EXPORT WebElement documentElement() const; | 82 BLINK_EXPORT WebElement documentElement() const; |
83 BLINK_EXPORT WebString title() const; | 83 BLINK_EXPORT WebString title() const; |
84 BLINK_EXPORT WebURL completeURL(const WebString&) const; | 84 BLINK_EXPORT WebURL completeURL(const WebString&) const; |
85 BLINK_EXPORT WebElement getElementById(const WebString&) const; | 85 BLINK_EXPORT WebElement getElementById(const WebString&) const; |
86 BLINK_EXPORT WebElement focusedElement() const; | 86 BLINK_EXPORT WebElement focusedElement() const; |
87 BLINK_EXPORT WebReferrerPolicy referrerPolicy() const; | 87 BLINK_EXPORT WebReferrerPolicy referrerPolicy() const; |
88 BLINK_EXPORT WebElement createElement(const WebString& tagName); | 88 BLINK_EXPORT WebElement createElement(const WebString& tagName); |
89 | 89 |
90 BLINK_EXPORT v8::Handle<v8::Value> registerEmbedderCustomElement(const WebSt
ring& name, v8::Handle<v8::Value> options, WebExceptionCode&); | 90 BLINK_EXPORT v8::Handle<v8::Value> registerEmbedderCustomElement(const WebSt
ring& name, v8::Handle<v8::Value> options, WebExceptionCode&); |
| 91 BLINK_EXPORT void pauseAnimationsForTesting(double pauseTime) const; |
| 92 |
91 | 93 |
92 #if BLINK_IMPLEMENTATION | 94 #if BLINK_IMPLEMENTATION |
93 WebDocument(const PassRefPtr<Document>&); | 95 WebDocument(const PassRefPtr<Document>&); |
94 WebDocument& operator=(const PassRefPtr<Document>&); | 96 WebDocument& operator=(const PassRefPtr<Document>&); |
95 operator PassRefPtr<Document>() const; | 97 operator PassRefPtr<Document>() const; |
96 #endif | 98 #endif |
97 }; | 99 }; |
98 | 100 |
99 } // namespace blink | 101 } // namespace blink |
100 | 102 |
101 #endif // SKY_ENGINE_PUBLIC_WEB_WEBDOCUMENT_H_ | 103 #endif // SKY_ENGINE_PUBLIC_WEB_WEBDOCUMENT_H_ |
OLD | NEW |