| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2009, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2009, 2010 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 // DOM Level 2 AbstractView Interface | 201 // DOM Level 2 AbstractView Interface |
| 202 | 202 |
| 203 Document* document() const; | 203 Document* document() const; |
| 204 | 204 |
| 205 // CSSOM View Module | 205 // CSSOM View Module |
| 206 | 206 |
| 207 StyleMedia& styleMedia() const; | 207 StyleMedia& styleMedia() const; |
| 208 | 208 |
| 209 // DOM Level 2 Style Interface | 209 // DOM Level 2 Style Interface |
| 210 | 210 |
| 211 PassRefPtr<CSSStyleDeclaration> getComputedStyle(Element*, const String&
pseudoElt) const; | 211 PassRefPtrWillBeRawPtr<CSSStyleDeclaration> getComputedStyle(Element*, c
onst String& pseudoElt) const; |
| 212 | 212 |
| 213 // WebKit extensions | 213 // WebKit extensions |
| 214 | 214 |
| 215 PassRefPtrWillBeRawPtr<CSSRuleList> getMatchedCSSRules(Element*, const S
tring& pseudoElt) const; | 215 PassRefPtrWillBeRawPtr<CSSRuleList> getMatchedCSSRules(Element*, const S
tring& pseudoElt) const; |
| 216 double devicePixelRatio() const; | 216 double devicePixelRatio() const; |
| 217 | 217 |
| 218 PassRefPtr<DOMPoint> webkitConvertPointFromPageToNode(Node*, const DOMPo
int*) const; | 218 PassRefPtr<DOMPoint> webkitConvertPointFromPageToNode(Node*, const DOMPo
int*) const; |
| 219 PassRefPtr<DOMPoint> webkitConvertPointFromNodeToPage(Node*, const DOMPo
int*) const; | 219 PassRefPtr<DOMPoint> webkitConvertPointFromNodeToPage(Node*, const DOMPo
int*) const; |
| 220 | 220 |
| 221 Console& console() const; | 221 Console& console() const; |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 377 } | 377 } |
| 378 | 378 |
| 379 inline String DOMWindow::defaultStatus() const | 379 inline String DOMWindow::defaultStatus() const |
| 380 { | 380 { |
| 381 return m_defaultStatus; | 381 return m_defaultStatus; |
| 382 } | 382 } |
| 383 | 383 |
| 384 } // namespace WebCore | 384 } // namespace WebCore |
| 385 | 385 |
| 386 #endif // DOMWindow_h | 386 #endif // DOMWindow_h |
| OLD | NEW |