| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 #include "wtf/PassOwnPtr.h" | 57 #include "wtf/PassOwnPtr.h" |
| 58 #include "wtf/PassRefPtr.h" | 58 #include "wtf/PassRefPtr.h" |
| 59 #include "wtf/WeakPtr.h" | 59 #include "wtf/WeakPtr.h" |
| 60 | 60 |
| 61 namespace WebCore { | 61 namespace WebCore { |
| 62 | 62 |
| 63 class AXObjectCache; | 63 class AXObjectCache; |
| 64 class AnimationClock; | 64 class AnimationClock; |
| 65 class Attr; | 65 class Attr; |
| 66 class CDATASection; | 66 class CDATASection; |
| 67 class CSSFontSelector; |
| 67 class CSSStyleDeclaration; | 68 class CSSStyleDeclaration; |
| 68 class CSSStyleSheet; | 69 class CSSStyleSheet; |
| 69 class CSSStyleSheetResource; | 70 class CSSStyleSheetResource; |
| 70 class CanvasRenderingContext; | 71 class CanvasRenderingContext; |
| 71 class CharacterData; | 72 class CharacterData; |
| 72 class Chrome; | 73 class Chrome; |
| 73 class Comment; | 74 class Comment; |
| 74 class ContentSecurityPolicyResponseHeaders; | 75 class ContentSecurityPolicyResponseHeaders; |
| 75 class ContextFeatures; | 76 class ContextFeatures; |
| 76 class CustomElementRegistrationContext; | 77 class CustomElementRegistrationContext; |
| (...skipping 1284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1361 inline bool Node::isDocumentNode() const | 1362 inline bool Node::isDocumentNode() const |
| 1362 { | 1363 { |
| 1363 return this == documentInternal(); | 1364 return this == documentInternal(); |
| 1364 } | 1365 } |
| 1365 | 1366 |
| 1366 Node* eventTargetNodeForDocument(Document*); | 1367 Node* eventTargetNodeForDocument(Document*); |
| 1367 | 1368 |
| 1368 } // namespace WebCore | 1369 } // namespace WebCore |
| 1369 | 1370 |
| 1370 #endif // Document_h | 1371 #endif // Document_h |
| OLD | NEW |