| 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 class HTMLLinkElement; | 108 class HTMLLinkElement; |
| 109 class HTMLScriptElement; | 109 class HTMLScriptElement; |
| 110 class HitTestRequest; | 110 class HitTestRequest; |
| 111 class LayoutPoint; | 111 class LayoutPoint; |
| 112 class LiveNodeListBase; | 112 class LiveNodeListBase; |
| 113 class Locale; | 113 class Locale; |
| 114 class LocalDOMWindow; | 114 class LocalDOMWindow; |
| 115 class LocalFrame; | 115 class LocalFrame; |
| 116 class Location; | 116 class Location; |
| 117 class MainThreadTaskRunner; | 117 class MainThreadTaskRunner; |
| 118 class MediaQueryListListener; |
| 118 class MediaQueryMatcher; | 119 class MediaQueryMatcher; |
| 119 class NodeFilter; | 120 class NodeFilter; |
| 120 class NodeIterator; | 121 class NodeIterator; |
| 121 class Page; | 122 class Page; |
| 122 class PlatformMouseEvent; | 123 class PlatformMouseEvent; |
| 123 class ProcessingInstruction; | 124 class ProcessingInstruction; |
| 124 class QualifiedName; | 125 class QualifiedName; |
| 125 class Range; | 126 class Range; |
| 126 class RenderView; | 127 class RenderView; |
| 127 class RequestAnimationFrameCallback; | 128 class RequestAnimationFrameCallback; |
| (...skipping 773 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 901 | 902 |
| 902 virtual bool isContextThread() const OVERRIDE FINAL; | 903 virtual bool isContextThread() const OVERRIDE FINAL; |
| 903 virtual bool isJSExecutionForbidden() const OVERRIDE FINAL { return false; } | 904 virtual bool isJSExecutionForbidden() const OVERRIDE FINAL { return false; } |
| 904 | 905 |
| 905 bool containsValidityStyleRules() const { return m_containsValidityStyleRule
s; } | 906 bool containsValidityStyleRules() const { return m_containsValidityStyleRule
s; } |
| 906 void setContainsValidityStyleRules() { m_containsValidityStyleRules = true;
} | 907 void setContainsValidityStyleRules() { m_containsValidityStyleRules = true;
} |
| 907 | 908 |
| 908 void enqueueResizeEvent(); | 909 void enqueueResizeEvent(); |
| 909 void enqueueScrollEventForNode(Node*); | 910 void enqueueScrollEventForNode(Node*); |
| 910 void enqueueAnimationFrameEvent(PassRefPtrWillBeRawPtr<Event>); | 911 void enqueueAnimationFrameEvent(PassRefPtrWillBeRawPtr<Event>); |
| 912 void enqueueMediaQueryChangeListeners(WillBeHeapVector<RefPtrWillBeMember<Me
diaQueryListListener> >&); |
| 911 | 913 |
| 912 bool hasFullscreenElementStack() const { return m_hasFullscreenElementStack;
} | 914 bool hasFullscreenElementStack() const { return m_hasFullscreenElementStack;
} |
| 913 void setHasFullscreenElementStack() { m_hasFullscreenElementStack = true; } | 915 void setHasFullscreenElementStack() { m_hasFullscreenElementStack = true; } |
| 914 | 916 |
| 915 void exitPointerLock(); | 917 void exitPointerLock(); |
| 916 Element* pointerLockElement() const; | 918 Element* pointerLockElement() const; |
| 917 | 919 |
| 918 // Used to allow element that loads data without going through a FrameLoader
to delay the 'load' event. | 920 // Used to allow element that loads data without going through a FrameLoader
to delay the 'load' event. |
| 919 void incrementLoadEventDelayCount() { ++m_loadEventDelayCount; } | 921 void incrementLoadEventDelayCount() { ++m_loadEventDelayCount; } |
| 920 void decrementLoadEventDelayCount(); | 922 void decrementLoadEventDelayCount(); |
| (...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1425 inline bool Node::isDocumentNode() const | 1427 inline bool Node::isDocumentNode() const |
| 1426 { | 1428 { |
| 1427 return this == document(); | 1429 return this == document(); |
| 1428 } | 1430 } |
| 1429 | 1431 |
| 1430 Node* eventTargetNodeForDocument(Document*); | 1432 Node* eventTargetNodeForDocument(Document*); |
| 1431 | 1433 |
| 1432 } // namespace WebCore | 1434 } // namespace WebCore |
| 1433 | 1435 |
| 1434 #endif // Document_h | 1436 #endif // Document_h |
| OLD | NEW |