OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
4 * (C) 2000 Simon Hausmann <hausmann@kde.org> | 4 * (C) 2000 Simon Hausmann <hausmann@kde.org> |
5 * Copyright (C) 2004, 2006, 2009, 2010 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004, 2006, 2009, 2010 Apple Inc. All rights reserved. |
6 * | 6 * |
7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(online); | 60 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(online); |
61 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(popstate); | 61 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(popstate); |
62 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(resize); | 62 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(resize); |
63 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(storage); | 63 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(storage); |
64 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(unload); | 64 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(unload); |
65 | 65 |
66 #if ENABLE(ORIENTATION_EVENTS) | 66 #if ENABLE(ORIENTATION_EVENTS) |
67 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(orientationchange); | 67 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(orientationchange); |
68 #endif | 68 #endif |
69 | 69 |
70 virtual void acceptHeapVisitor(Visitor* visitor) const { HTMLElement::accept
HeapVisitor(visitor); } | 70 virtual void acceptHeapVisitor(Visitor*) const OVERRIDE; |
71 | 71 |
72 private: | 72 private: |
73 HTMLBodyElement(const QualifiedName&, Handle<Document>); | 73 HTMLBodyElement(const QualifiedName&, Handle<Document>); |
74 | 74 |
75 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; | 75 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; |
76 virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE; | 76 virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE; |
77 virtual void collectStyleForPresentationAttribute(const QualifiedName&, cons
t AtomicString&, Handle<MutableStylePropertySet>) OVERRIDE; | 77 virtual void collectStyleForPresentationAttribute(const QualifiedName&, cons
t AtomicString&, Handle<MutableStylePropertySet>) OVERRIDE; |
78 | 78 |
79 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; | 79 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; |
80 virtual void didNotifySubtreeInsertions(ContainerNode*) OVERRIDE; | 80 virtual void didNotifySubtreeInsertions(ContainerNode*) OVERRIDE; |
(...skipping 10 matching lines...) Expand all Loading... |
91 | 91 |
92 virtual int scrollHeight(); | 92 virtual int scrollHeight(); |
93 virtual int scrollWidth(); | 93 virtual int scrollWidth(); |
94 | 94 |
95 virtual void addSubresourceAttributeURLs(ListHashSet<KURL>&) const; | 95 virtual void addSubresourceAttributeURLs(ListHashSet<KURL>&) const; |
96 }; | 96 }; |
97 | 97 |
98 } //namespace | 98 } //namespace |
99 | 99 |
100 #endif | 100 #endif |
OLD | NEW |