| 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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 // CSSOM View Module | 198 // CSSOM View Module |
| 199 | 199 |
| 200 StyleMedia& styleMedia() const; | 200 StyleMedia& styleMedia() const; |
| 201 | 201 |
| 202 // DOM Level 2 Style Interface | 202 // DOM Level 2 Style Interface |
| 203 | 203 |
| 204 PassRefPtr<CSSStyleDeclaration> getComputedStyle(Element*, const String&
pseudoElt) const; | 204 PassRefPtr<CSSStyleDeclaration> getComputedStyle(Element*, const String&
pseudoElt) const; |
| 205 | 205 |
| 206 // WebKit extensions | 206 // WebKit extensions |
| 207 | 207 |
| 208 PassRefPtr<CSSRuleList> getMatchedCSSRules(Element*, const String& pseud
oElt) const; | 208 PassRefPtrWillBeRawPtr<CSSRuleList> getMatchedCSSRules(Element*, const S
tring& pseudoElt) const; |
| 209 double devicePixelRatio() const; | 209 double devicePixelRatio() const; |
| 210 | 210 |
| 211 PassRefPtr<DOMPoint> webkitConvertPointFromPageToNode(Node*, const DOMPo
int*) const; | 211 PassRefPtr<DOMPoint> webkitConvertPointFromPageToNode(Node*, const DOMPo
int*) const; |
| 212 PassRefPtr<DOMPoint> webkitConvertPointFromNodeToPage(Node*, const DOMPo
int*) const; | 212 PassRefPtr<DOMPoint> webkitConvertPointFromNodeToPage(Node*, const DOMPo
int*) const; |
| 213 | 213 |
| 214 Console& console() const; | 214 Console& console() const; |
| 215 PageConsole* pageConsole() const; | 215 PageConsole* pageConsole() const; |
| 216 | 216 |
| 217 void printErrorMessage(const String&); | 217 void printErrorMessage(const String&); |
| 218 String crossDomainAccessErrorMessage(DOMWindow* callingWindow); | 218 String crossDomainAccessErrorMessage(DOMWindow* callingWindow); |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 370 } | 370 } |
| 371 | 371 |
| 372 inline String DOMWindow::defaultStatus() const | 372 inline String DOMWindow::defaultStatus() const |
| 373 { | 373 { |
| 374 return m_defaultStatus; | 374 return m_defaultStatus; |
| 375 } | 375 } |
| 376 | 376 |
| 377 } // namespace WebCore | 377 } // namespace WebCore |
| 378 | 378 |
| 379 #endif // DOMWindow_h | 379 #endif // DOMWindow_h |
| OLD | NEW |