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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 void moveBy(int x, int y, bool hasX, bool hasY) const override; | 139 void moveBy(int x, int y, bool hasX, bool hasY) const override; |
140 void moveTo(int x, int y, bool hasX, bool hasY) const override; | 140 void moveTo(int x, int y, bool hasX, bool hasY) const override; |
141 void resizeBy(int x, int y, bool hasX, bool hasY) const override; | 141 void resizeBy(int x, int y, bool hasX, bool hasY) const override; |
142 void resizeTo(int width, int height, bool hasWidth, bool hasHeight) const ov
erride; | 142 void resizeTo(int width, int height, bool hasWidth, bool hasHeight) const ov
erride; |
143 PassRefPtrWillBeRawPtr<MediaQueryList> matchMedia(const String&) override; | 143 PassRefPtrWillBeRawPtr<MediaQueryList> matchMedia(const String&) override; |
144 PassRefPtrWillBeRawPtr<CSSStyleDeclaration> getComputedStyle(Element*, const
String& pseudoElt) const override; | 144 PassRefPtrWillBeRawPtr<CSSStyleDeclaration> getComputedStyle(Element*, const
String& pseudoElt) const override; |
145 PassRefPtrWillBeRawPtr<CSSRuleList> getMatchedCSSRules(Element*, const Strin
g& pseudoElt) const override; | 145 PassRefPtrWillBeRawPtr<CSSRuleList> getMatchedCSSRules(Element*, const Strin
g& pseudoElt) const override; |
146 int requestAnimationFrame(FrameRequestCallback*) override; | 146 int requestAnimationFrame(FrameRequestCallback*) override; |
147 int webkitRequestAnimationFrame(FrameRequestCallback*) override; | 147 int webkitRequestAnimationFrame(FrameRequestCallback*) override; |
148 void cancelAnimationFrame(int id) override; | 148 void cancelAnimationFrame(int id) override; |
| 149 int requestIdleFrame(IdleRequestCallback*) override; |
| 150 void cancelIdleFrame(int id) override; |
149 void schedulePostMessage(PassRefPtrWillBeRawPtr<MessageEvent>, LocalDOMWindo
w* source, SecurityOrigin* target, PassRefPtrWillBeRawPtr<ScriptCallStack> stack
Trace); | 151 void schedulePostMessage(PassRefPtrWillBeRawPtr<MessageEvent>, LocalDOMWindo
w* source, SecurityOrigin* target, PassRefPtrWillBeRawPtr<ScriptCallStack> stack
Trace); |
150 String crossDomainAccessErrorMessage(LocalDOMWindow* callingWindow) override
; | 152 String crossDomainAccessErrorMessage(LocalDOMWindow* callingWindow) override
; |
151 String sanitizedCrossDomainAccessErrorMessage(LocalDOMWindow* callingWindow)
override; | 153 String sanitizedCrossDomainAccessErrorMessage(LocalDOMWindow* callingWindow)
override; |
152 | 154 |
153 void registerProperty(DOMWindowProperty*); | 155 void registerProperty(DOMWindowProperty*); |
154 void unregisterProperty(DOMWindowProperty*); | 156 void unregisterProperty(DOMWindowProperty*); |
155 | 157 |
156 void reset(); | 158 void reset(); |
157 | 159 |
158 unsigned pendingUnloadEventListeners() const; | 160 unsigned pendingUnloadEventListeners() const; |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
294 } | 296 } |
295 | 297 |
296 inline String LocalDOMWindow::defaultStatus() const | 298 inline String LocalDOMWindow::defaultStatus() const |
297 { | 299 { |
298 return m_defaultStatus; | 300 return m_defaultStatus; |
299 } | 301 } |
300 | 302 |
301 } // namespace blink | 303 } // namespace blink |
302 | 304 |
303 #endif // LocalDOMWindow_h | 305 #endif // LocalDOMWindow_h |
OLD | NEW |