| 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 // DOM Level 2 AbstractView Interface | 137 // DOM Level 2 AbstractView Interface |
| 138 | 138 |
| 139 Document* document() const; | 139 Document* document() const; |
| 140 | 140 |
| 141 // CSSOM View Module | 141 // CSSOM View Module |
| 142 | 142 |
| 143 StyleMedia& styleMedia() const; | 143 StyleMedia& styleMedia() const; |
| 144 | 144 |
| 145 // DOM Level 2 Style Interface | 145 // DOM Level 2 Style Interface |
| 146 | 146 |
| 147 PassRefPtr<CSSStyleDeclaration> getComputedStyle(Element*, const String& pse
udoElt) const; | 147 PassRefPtr<CSSStyleDeclaration> getComputedStyle(Element*) const; |
| 148 | 148 |
| 149 // WebKit extensions | 149 // WebKit extensions |
| 150 | 150 |
| 151 double devicePixelRatio() const; | 151 double devicePixelRatio() const; |
| 152 | 152 |
| 153 Console& console() const; | 153 Console& console() const; |
| 154 FrameConsole* frameConsole() const; | 154 FrameConsole* frameConsole() const; |
| 155 | 155 |
| 156 void printErrorMessage(const String&); | 156 void printErrorMessage(const String&); |
| 157 | 157 |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 mutable RefPtr<StyleMedia> m_media; | 244 mutable RefPtr<StyleMedia> m_media; |
| 245 | 245 |
| 246 mutable RefPtr<DOMWindowCSS> m_css; | 246 mutable RefPtr<DOMWindowCSS> m_css; |
| 247 | 247 |
| 248 RefPtr<DOMWindowEventQueue> m_eventQueue; | 248 RefPtr<DOMWindowEventQueue> m_eventQueue; |
| 249 }; | 249 }; |
| 250 | 250 |
| 251 } // namespace blink | 251 } // namespace blink |
| 252 | 252 |
| 253 #endif // SKY_ENGINE_CORE_FRAME_LOCALDOMWINDOW_H_ | 253 #endif // SKY_ENGINE_CORE_FRAME_LOCALDOMWINDOW_H_ |
| OLD | NEW |