| 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 25 matching lines...) Expand all Loading... |
| 36 #include "platform/heap/Handle.h" | 36 #include "platform/heap/Handle.h" |
| 37 | 37 |
| 38 #include "wtf/Forward.h" | 38 #include "wtf/Forward.h" |
| 39 | 39 |
| 40 namespace blink { | 40 namespace blink { |
| 41 class ApplicationCache; | 41 class ApplicationCache; |
| 42 class BarProp; | 42 class BarProp; |
| 43 class CSSRuleList; | 43 class CSSRuleList; |
| 44 class CSSStyleDeclaration; | 44 class CSSStyleDeclaration; |
| 45 class Console; | 45 class Console; |
| 46 class DOMPoint; | 46 class WebKitPoint; |
| 47 class DOMSelection; | 47 class DOMSelection; |
| 48 class DOMURL; | 48 class DOMURL; |
| 49 class DOMWindowProperty; | 49 class DOMWindowProperty; |
| 50 class Database; | 50 class Database; |
| 51 class DatabaseCallback; | 51 class DatabaseCallback; |
| 52 class Document; | 52 class Document; |
| 53 class DocumentInit; | 53 class DocumentInit; |
| 54 class DOMWindowEventQueue; | 54 class DOMWindowEventQueue; |
| 55 class DOMWindowLifecycleNotifier; | 55 class DOMWindowLifecycleNotifier; |
| 56 class Element; | 56 class Element; |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 | 211 |
| 212 // DOM Level 2 Style Interface | 212 // DOM Level 2 Style Interface |
| 213 | 213 |
| 214 PassRefPtrWillBeRawPtr<CSSStyleDeclaration> getComputedStyle(Element*, c
onst String& pseudoElt) const; | 214 PassRefPtrWillBeRawPtr<CSSStyleDeclaration> getComputedStyle(Element*, c
onst String& pseudoElt) const; |
| 215 | 215 |
| 216 // WebKit extensions | 216 // WebKit extensions |
| 217 | 217 |
| 218 PassRefPtrWillBeRawPtr<CSSRuleList> getMatchedCSSRules(Element*, const S
tring& pseudoElt) const; | 218 PassRefPtrWillBeRawPtr<CSSRuleList> getMatchedCSSRules(Element*, const S
tring& pseudoElt) const; |
| 219 double devicePixelRatio() const; | 219 double devicePixelRatio() const; |
| 220 | 220 |
| 221 PassRefPtrWillBeRawPtr<DOMPoint> webkitConvertPointFromPageToNode(Node*,
const DOMPoint*) const; | 221 PassRefPtrWillBeRawPtr<WebKitPoint> webkitConvertPointFromPageToNode(Nod
e*, const WebKitPoint*) const; |
| 222 PassRefPtrWillBeRawPtr<DOMPoint> webkitConvertPointFromNodeToPage(Node*,
const DOMPoint*) const; | 222 PassRefPtrWillBeRawPtr<WebKitPoint> webkitConvertPointFromNodeToPage(Nod
e*, const WebKitPoint*) const; |
| 223 | 223 |
| 224 Console& console() const; | 224 Console& console() const; |
| 225 FrameConsole* frameConsole() const; | 225 FrameConsole* frameConsole() const; |
| 226 | 226 |
| 227 void printErrorMessage(const String&); | 227 void printErrorMessage(const String&); |
| 228 String crossDomainAccessErrorMessage(LocalDOMWindow* callingWindow); | 228 String crossDomainAccessErrorMessage(LocalDOMWindow* callingWindow); |
| 229 String sanitizedCrossDomainAccessErrorMessage(LocalDOMWindow* callingWin
dow); | 229 String sanitizedCrossDomainAccessErrorMessage(LocalDOMWindow* callingWin
dow); |
| 230 | 230 |
| 231 void postMessage(PassRefPtr<SerializedScriptValue> message, const Messag
ePortArray*, const String& targetOrigin, LocalDOMWindow* source, ExceptionState&
); | 231 void postMessage(PassRefPtr<SerializedScriptValue> message, const Messag
ePortArray*, const String& targetOrigin, LocalDOMWindow* source, ExceptionState&
); |
| 232 void postMessageTimerFired(PassOwnPtr<PostMessageTimer>); | 232 void postMessageTimerFired(PassOwnPtr<PostMessageTimer>); |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 } | 402 } |
| 403 | 403 |
| 404 inline String LocalDOMWindow::defaultStatus() const | 404 inline String LocalDOMWindow::defaultStatus() const |
| 405 { | 405 { |
| 406 return m_defaultStatus; | 406 return m_defaultStatus; |
| 407 } | 407 } |
| 408 | 408 |
| 409 } // namespace blink | 409 } // namespace blink |
| 410 | 410 |
| 411 #endif // DOMWindow_h | 411 #endif // DOMWindow_h |
| OLD | NEW |