| 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 // CSSOM View Module | 144 // CSSOM View Module |
| 145 | 145 |
| 146 StyleMedia& styleMedia() const; | 146 StyleMedia& styleMedia() const; |
| 147 | 147 |
| 148 // DOM Level 2 Style Interface | 148 // DOM Level 2 Style Interface |
| 149 | 149 |
| 150 PassRefPtr<CSSStyleDeclaration> getComputedStyle(Element*, const String& pse
udoElt) const; | 150 PassRefPtr<CSSStyleDeclaration> getComputedStyle(Element*, const String& pse
udoElt) const; |
| 151 | 151 |
| 152 // WebKit extensions | 152 // WebKit extensions |
| 153 | 153 |
| 154 PassRefPtr<CSSRuleList> getMatchedCSSRules(Element*, const String& pseudoElt
) const; | |
| 155 double devicePixelRatio() const; | 154 double devicePixelRatio() const; |
| 156 | 155 |
| 157 Console& console() const; | 156 Console& console() const; |
| 158 FrameConsole* frameConsole() const; | 157 FrameConsole* frameConsole() const; |
| 159 | 158 |
| 160 void printErrorMessage(const String&); | 159 void printErrorMessage(const String&); |
| 161 | 160 |
| 162 void moveBy(float x, float y) const; | 161 void moveBy(float x, float y) const; |
| 163 void moveTo(float x, float y) const; | 162 void moveTo(float x, float y) const; |
| 164 | 163 |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 | 251 |
| 253 mutable RefPtr<DOMWindowCSS> m_css; | 252 mutable RefPtr<DOMWindowCSS> m_css; |
| 254 | 253 |
| 255 RefPtr<DOMWindowEventQueue> m_eventQueue; | 254 RefPtr<DOMWindowEventQueue> m_eventQueue; |
| 256 RefPtr<SerializedScriptValue> m_pendingStateObject; | 255 RefPtr<SerializedScriptValue> m_pendingStateObject; |
| 257 }; | 256 }; |
| 258 | 257 |
| 259 } // namespace blink | 258 } // namespace blink |
| 260 | 259 |
| 261 #endif // SKY_ENGINE_CORE_FRAME_LOCALDOMWINDOW_H_ | 260 #endif // SKY_ENGINE_CORE_FRAME_LOCALDOMWINDOW_H_ |
| OLD | NEW |