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 | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All |
7 * rights reserved. | 7 * rights reserved. |
8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. | 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. |
9 * (http://www.torchmobile.com/) | 9 * (http://www.torchmobile.com/) |
10 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 10 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
295 DEFINE_ATTRIBUTE_EVENT_LISTENER(copy); | 295 DEFINE_ATTRIBUTE_EVENT_LISTENER(copy); |
296 DEFINE_ATTRIBUTE_EVENT_LISTENER(cut); | 296 DEFINE_ATTRIBUTE_EVENT_LISTENER(cut); |
297 DEFINE_ATTRIBUTE_EVENT_LISTENER(paste); | 297 DEFINE_ATTRIBUTE_EVENT_LISTENER(paste); |
298 DEFINE_ATTRIBUTE_EVENT_LISTENER(pointerlockchange); | 298 DEFINE_ATTRIBUTE_EVENT_LISTENER(pointerlockchange); |
299 DEFINE_ATTRIBUTE_EVENT_LISTENER(pointerlockerror); | 299 DEFINE_ATTRIBUTE_EVENT_LISTENER(pointerlockerror); |
300 DEFINE_ATTRIBUTE_EVENT_LISTENER(readystatechange); | 300 DEFINE_ATTRIBUTE_EVENT_LISTENER(readystatechange); |
301 DEFINE_ATTRIBUTE_EVENT_LISTENER(search); | 301 DEFINE_ATTRIBUTE_EVENT_LISTENER(search); |
302 DEFINE_ATTRIBUTE_EVENT_LISTENER(securitypolicyviolation); | 302 DEFINE_ATTRIBUTE_EVENT_LISTENER(securitypolicyviolation); |
303 DEFINE_ATTRIBUTE_EVENT_LISTENER(selectionchange); | 303 DEFINE_ATTRIBUTE_EVENT_LISTENER(selectionchange); |
304 DEFINE_ATTRIBUTE_EVENT_LISTENER(selectstart); | 304 DEFINE_ATTRIBUTE_EVENT_LISTENER(selectstart); |
305 DEFINE_ATTRIBUTE_EVENT_LISTENER(wheel); | |
306 | 305 |
307 bool ShouldMergeWithLegacyDescription(ViewportDescription::Type) const; | 306 bool ShouldMergeWithLegacyDescription(ViewportDescription::Type) const; |
308 bool ShouldOverrideLegacyDescription(ViewportDescription::Type) const; | 307 bool ShouldOverrideLegacyDescription(ViewportDescription::Type) const; |
309 void SetViewportDescription(const ViewportDescription&); | 308 void SetViewportDescription(const ViewportDescription&); |
310 ViewportDescription GetViewportDescription() const; | 309 ViewportDescription GetViewportDescription() const; |
311 Length ViewportDefaultMinWidth() const { return viewport_default_min_width_; } | 310 Length ViewportDefaultMinWidth() const { return viewport_default_min_width_; } |
312 | 311 |
313 String OutgoingReferrer() const override; | 312 String OutgoingReferrer() const override; |
314 ReferrerPolicy GetReferrerPolicy() const override; | 313 ReferrerPolicy GetReferrerPolicy() const override; |
315 | 314 |
(...skipping 1421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1737 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); | 1736 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); |
1738 | 1737 |
1739 } // namespace blink | 1738 } // namespace blink |
1740 | 1739 |
1741 #ifndef NDEBUG | 1740 #ifndef NDEBUG |
1742 // Outside the WebCore namespace for ease of invocation from gdb. | 1741 // Outside the WebCore namespace for ease of invocation from gdb. |
1743 CORE_EXPORT void showLiveDocumentInstances(); | 1742 CORE_EXPORT void showLiveDocumentInstances(); |
1744 #endif | 1743 #endif |
1745 | 1744 |
1746 #endif // Document_h | 1745 #endif // Document_h |
OLD | NEW |