| 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) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) | 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) |
| 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r
ights reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r
ights reserved. |
| 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
| 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
| 9 * Copyright (C) 2011 Google Inc. All rights reserved. | 9 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 10 * | 10 * |
| (...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 DEFINE_ATTRIBUTE_EVENT_LISTENER(touchcancel); | 304 DEFINE_ATTRIBUTE_EVENT_LISTENER(touchcancel); |
| 305 DEFINE_ATTRIBUTE_EVENT_LISTENER(touchend); | 305 DEFINE_ATTRIBUTE_EVENT_LISTENER(touchend); |
| 306 DEFINE_ATTRIBUTE_EVENT_LISTENER(touchmove); | 306 DEFINE_ATTRIBUTE_EVENT_LISTENER(touchmove); |
| 307 DEFINE_ATTRIBUTE_EVENT_LISTENER(touchstart); | 307 DEFINE_ATTRIBUTE_EVENT_LISTENER(touchstart); |
| 308 DEFINE_ATTRIBUTE_EVENT_LISTENER(volumechange); | 308 DEFINE_ATTRIBUTE_EVENT_LISTENER(volumechange); |
| 309 DEFINE_ATTRIBUTE_EVENT_LISTENER(waiting); | 309 DEFINE_ATTRIBUTE_EVENT_LISTENER(waiting); |
| 310 DEFINE_ATTRIBUTE_EVENT_LISTENER(webkitfullscreenchange); | 310 DEFINE_ATTRIBUTE_EVENT_LISTENER(webkitfullscreenchange); |
| 311 DEFINE_ATTRIBUTE_EVENT_LISTENER(webkitfullscreenerror); | 311 DEFINE_ATTRIBUTE_EVENT_LISTENER(webkitfullscreenerror); |
| 312 DEFINE_ATTRIBUTE_EVENT_LISTENER(webkitpointerlockchange); | 312 DEFINE_ATTRIBUTE_EVENT_LISTENER(webkitpointerlockchange); |
| 313 DEFINE_ATTRIBUTE_EVENT_LISTENER(webkitpointerlockerror); | 313 DEFINE_ATTRIBUTE_EVENT_LISTENER(webkitpointerlockerror); |
| 314 DEFINE_ATTRIBUTE_EVENT_LISTENER(webkitvisibilitychange); | |
| 315 DEFINE_ATTRIBUTE_EVENT_LISTENER(wheel); | 314 DEFINE_ATTRIBUTE_EVENT_LISTENER(wheel); |
| 316 | 315 |
| 317 bool shouldMergeWithLegacyDescription(ViewportDescription::Type); | 316 bool shouldMergeWithLegacyDescription(ViewportDescription::Type); |
| 318 bool shouldOverrideLegacyDescription(ViewportDescription::Type); | 317 bool shouldOverrideLegacyDescription(ViewportDescription::Type); |
| 319 void setViewportDescription(const ViewportDescription&); | 318 void setViewportDescription(const ViewportDescription&); |
| 320 const ViewportDescription& viewportDescription() const { return m_viewportDe
scription; } | 319 const ViewportDescription& viewportDescription() const { return m_viewportDe
scription; } |
| 321 #ifndef NDEBUG | 320 #ifndef NDEBUG |
| 322 bool didDispatchViewportPropertiesChanged() const { return m_didDispatchView
portPropertiesChanged; } | 321 bool didDispatchViewportPropertiesChanged() const { return m_didDispatchView
portPropertiesChanged; } |
| 323 #endif | 322 #endif |
| 324 bool hasLegacyViewportTag() const { return m_legacyViewportDescription.isLeg
acyViewportType(); } | 323 bool hasLegacyViewportTag() const { return m_legacyViewportDescription.isLeg
acyViewportType(); } |
| (...skipping 1119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1444 inline bool Node::isDocumentNode() const | 1443 inline bool Node::isDocumentNode() const |
| 1445 { | 1444 { |
| 1446 return this == documentInternal(); | 1445 return this == documentInternal(); |
| 1447 } | 1446 } |
| 1448 | 1447 |
| 1449 Node* eventTargetNodeForDocument(Document*); | 1448 Node* eventTargetNodeForDocument(Document*); |
| 1450 | 1449 |
| 1451 } // namespace WebCore | 1450 } // namespace WebCore |
| 1452 | 1451 |
| 1453 #endif // Document_h | 1452 #endif // Document_h |
| OLD | NEW |