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 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
238 class Document : public ContainerNode, public TreeScope, public SecurityContext, public ExecutionContext, public ExecutionContextClient | 238 class Document : public ContainerNode, public TreeScope, public SecurityContext, public ExecutionContext, public ExecutionContextClient |
239 , public DocumentSupplementable, public LifecycleContext<Document> { | 239 , public DocumentSupplementable, public LifecycleContext<Document> { |
240 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(Document); | 240 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(Document); |
241 public: | 241 public: |
242 static PassRefPtrWillBeRawPtr<Document> create(const DocumentInit& initializ er = DocumentInit()) | 242 static PassRefPtrWillBeRawPtr<Document> create(const DocumentInit& initializ er = DocumentInit()) |
243 { | 243 { |
244 return adoptRefWillBeNoop(new Document(initializer)); | 244 return adoptRefWillBeNoop(new Document(initializer)); |
245 } | 245 } |
246 virtual ~Document(); | 246 virtual ~Document(); |
247 | 247 |
248 operator ExecutionContext*() { return this; } | |
Jens Widell
2014/06/18 12:53:29
Operator added primarily to make authoring this pa
haraken
2014/06/18 13:15:01
I think we want to avoid implicit conversions as m
Jens Widell
2014/06/18 14:19:43
I don't disagree. OTOH, there's a public inheritan
tkent
2014/06/18 23:44:24
Changing Document arguments of factory functions t
| |
249 | |
248 MediaQueryMatcher& mediaQueryMatcher(); | 250 MediaQueryMatcher& mediaQueryMatcher(); |
249 | 251 |
250 void mediaQueryAffectingValueChanged(); | 252 void mediaQueryAffectingValueChanged(); |
251 | 253 |
252 #if !ENABLE(OILPAN) | 254 #if !ENABLE(OILPAN) |
253 using ContainerNode::ref; | 255 using ContainerNode::ref; |
254 using ContainerNode::deref; | 256 using ContainerNode::deref; |
255 #endif | 257 #endif |
256 using SecurityContext::securityOrigin; | 258 using SecurityContext::securityOrigin; |
257 using SecurityContext::contentSecurityPolicy; | 259 using SecurityContext::contentSecurityPolicy; |
(...skipping 1208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1466 inline bool Node::isDocumentNode() const | 1468 inline bool Node::isDocumentNode() const |
1467 { | 1469 { |
1468 return this == document(); | 1470 return this == document(); |
1469 } | 1471 } |
1470 | 1472 |
1471 Node* eventTargetNodeForDocument(Document*); | 1473 Node* eventTargetNodeForDocument(Document*); |
1472 | 1474 |
1473 } // namespace WebCore | 1475 } // namespace WebCore |
1474 | 1476 |
1475 #endif // Document_h | 1477 #endif // Document_h |
OLD | NEW |