| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 WEBKIT_API WebURL baseURL() const; | 65 WEBKIT_API WebURL baseURL() const; |
| 66 WEBKIT_API WebElement documentElement() const; | 66 WEBKIT_API WebElement documentElement() const; |
| 67 WEBKIT_API WebElement body() const; | 67 WEBKIT_API WebElement body() const; |
| 68 WEBKIT_API WebElement head(); | 68 WEBKIT_API WebElement head(); |
| 69 WEBKIT_API WebString title() const; | 69 WEBKIT_API WebString title() const; |
| 70 WEBKIT_API WebNodeCollection all(); | 70 WEBKIT_API WebNodeCollection all(); |
| 71 WEBKIT_API WebURL completeURL(const WebString&) const; | 71 WEBKIT_API WebURL completeURL(const WebString&) const; |
| 72 WEBKIT_API WebElement getElementById(const WebString& id) const; | 72 WEBKIT_API WebElement getElementById(const WebString& id) const; |
| 73 WEBKIT_API WebNodeList getElementsByTagName(const WebString&); | 73 WEBKIT_API WebNodeList getElementsByTagName(const WebString&); |
| 74 WEBKIT_API WebString applicationID() const; | 74 WEBKIT_API WebString applicationID() const; |
| 75 WEBKIT_API WebNode focusedNode() const; |
| 75 | 76 |
| 76 #if WEBKIT_IMPLEMENTATION | 77 #if WEBKIT_IMPLEMENTATION |
| 77 WebDocument(const WTF::PassRefPtr<WebCore::Document>&); | 78 WebDocument(const WTF::PassRefPtr<WebCore::Document>&); |
| 78 WebDocument& operator=(const WTF::PassRefPtr<WebCore::Document>&); | 79 WebDocument& operator=(const WTF::PassRefPtr<WebCore::Document>&); |
| 79 operator WTF::PassRefPtr<WebCore::Document>() const; | 80 operator WTF::PassRefPtr<WebCore::Document>() const; |
| 80 #endif | 81 #endif |
| 81 }; | 82 }; |
| 82 | 83 |
| 83 } // namespace WebKit | 84 } // namespace WebKit |
| 84 | 85 |
| 85 #endif | 86 #endif |
| OLD | NEW |