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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 return adoptRef(new LocalDOMWindow(frame)); | 84 return adoptRef(new LocalDOMWindow(frame)); |
85 } | 85 } |
86 virtual ~LocalDOMWindow(); | 86 virtual ~LocalDOMWindow(); |
87 | 87 |
88 PassRefPtr<Document> installNewDocument(const DocumentInit&); | 88 PassRefPtr<Document> installNewDocument(const DocumentInit&); |
89 | 89 |
90 virtual const AtomicString& interfaceName() const override; | 90 virtual const AtomicString& interfaceName() const override; |
91 virtual ExecutionContext* executionContext() const override; | 91 virtual ExecutionContext* executionContext() const override; |
92 | 92 |
93 virtual LocalDOMWindow* toDOMWindow() override; | 93 virtual LocalDOMWindow* toDOMWindow() override; |
| 94 void AcceptDartGCVisitor(DartGCVisitor& visitor) const override; |
94 | 95 |
95 void registerProperty(DOMWindowProperty*); | 96 void registerProperty(DOMWindowProperty*); |
96 void unregisterProperty(DOMWindowProperty*); | 97 void unregisterProperty(DOMWindowProperty*); |
97 | 98 |
98 void reset(); | 99 void reset(); |
99 | 100 |
100 PassRefPtr<MediaQueryList> matchMedia(const String&); | 101 PassRefPtr<MediaQueryList> matchMedia(const String&); |
101 | 102 |
102 unsigned pendingUnloadEventListeners() const; | 103 unsigned pendingUnloadEventListeners() const; |
103 | 104 |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 mutable RefPtr<Location> m_location; | 234 mutable RefPtr<Location> m_location; |
234 | 235 |
235 mutable RefPtr<DOMWindowCSS> m_css; | 236 mutable RefPtr<DOMWindowCSS> m_css; |
236 | 237 |
237 RefPtr<DOMWindowEventQueue> m_eventQueue; | 238 RefPtr<DOMWindowEventQueue> m_eventQueue; |
238 }; | 239 }; |
239 | 240 |
240 } // namespace blink | 241 } // namespace blink |
241 | 242 |
242 #endif // SKY_ENGINE_CORE_FRAME_LOCALDOMWINDOW_H_ | 243 #endif // SKY_ENGINE_CORE_FRAME_LOCALDOMWINDOW_H_ |
OLD | NEW |