| 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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 MediaQueryList* matchMedia(const String&) override; | 147 MediaQueryList* matchMedia(const String&) override; |
| 148 CSSStyleDeclaration* getComputedStyle(Element*, const String& pseudoElt) con
st override; | 148 CSSStyleDeclaration* getComputedStyle(Element*, const String& pseudoElt) con
st override; |
| 149 CSSRuleList* getMatchedCSSRules(Element*, const String& pseudoElt) const ove
rride; | 149 CSSRuleList* getMatchedCSSRules(Element*, const String& pseudoElt) const ove
rride; |
| 150 int requestAnimationFrame(FrameRequestCallback*) override; | 150 int requestAnimationFrame(FrameRequestCallback*) override; |
| 151 int webkitRequestAnimationFrame(FrameRequestCallback*) override; | 151 int webkitRequestAnimationFrame(FrameRequestCallback*) override; |
| 152 void cancelAnimationFrame(int id) override; | 152 void cancelAnimationFrame(int id) override; |
| 153 int requestIdleCallback(IdleRequestCallback*, const IdleRequestOptions&) ove
rride; | 153 int requestIdleCallback(IdleRequestCallback*, const IdleRequestOptions&) ove
rride; |
| 154 void cancelIdleCallback(int id) override; | 154 void cancelIdleCallback(int id) override; |
| 155 CustomElementsRegistry* customElements(ScriptState*) const override; | 155 CustomElementsRegistry* customElements(ScriptState*) const override; |
| 156 CustomElementsRegistry* customElements() const; | 156 CustomElementsRegistry* customElements() const; |
| 157 CustomElementsRegistry* maybeCustomElements() const; |
| 157 | 158 |
| 158 void registerProperty(DOMWindowProperty*); | 159 void registerProperty(DOMWindowProperty*); |
| 159 void unregisterProperty(DOMWindowProperty*); | 160 void unregisterProperty(DOMWindowProperty*); |
| 160 | 161 |
| 161 void registerEventListenerObserver(EventListenerObserver*); | 162 void registerEventListenerObserver(EventListenerObserver*); |
| 162 | 163 |
| 163 void reset(); | 164 void reset(); |
| 164 | 165 |
| 165 unsigned pendingUnloadEventListeners() const; | 166 unsigned pendingUnloadEventListeners() const; |
| 166 | 167 |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 276 } | 277 } |
| 277 | 278 |
| 278 inline String LocalDOMWindow::defaultStatus() const | 279 inline String LocalDOMWindow::defaultStatus() const |
| 279 { | 280 { |
| 280 return m_defaultStatus; | 281 return m_defaultStatus; |
| 281 } | 282 } |
| 282 | 283 |
| 283 } // namespace blink | 284 } // namespace blink |
| 284 | 285 |
| 285 #endif // LocalDOMWindow_h | 286 #endif // LocalDOMWindow_h |
| OLD | NEW |