| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 #include "core/dom/TreeScope.h" | 46 #include "core/dom/TreeScope.h" |
| 47 #include "core/dom/UserActionElementSet.h" | 47 #include "core/dom/UserActionElementSet.h" |
| 48 #include "core/dom/ViewportDescription.h" | 48 #include "core/dom/ViewportDescription.h" |
| 49 #include "core/dom/custom/CustomElement.h" | 49 #include "core/dom/custom/CustomElement.h" |
| 50 #include "core/fetch/ClientHintsPreferences.h" | 50 #include "core/fetch/ClientHintsPreferences.h" |
| 51 #include "core/frame/DOMTimerCoordinator.h" | 51 #include "core/frame/DOMTimerCoordinator.h" |
| 52 #include "core/frame/LocalDOMWindow.h" | 52 #include "core/frame/LocalDOMWindow.h" |
| 53 #include "core/frame/OriginsUsingFeatures.h" | 53 #include "core/frame/OriginsUsingFeatures.h" |
| 54 #include "core/html/CollectionType.h" | 54 #include "core/html/CollectionType.h" |
| 55 #include "core/html/parser/ParserSynchronizationPolicy.h" | 55 #include "core/html/parser/ParserSynchronizationPolicy.h" |
| 56 #include "core/html/track/TextTrackKindUserPreference.h" |
| 56 #include "core/page/PageVisibilityState.h" | 57 #include "core/page/PageVisibilityState.h" |
| 57 #include "platform/Length.h" | 58 #include "platform/Length.h" |
| 58 #include "platform/Timer.h" | 59 #include "platform/Timer.h" |
| 59 #include "platform/heap/Handle.h" | 60 #include "platform/heap/Handle.h" |
| 60 #include "platform/weborigin/KURL.h" | 61 #include "platform/weborigin/KURL.h" |
| 61 #include "platform/weborigin/ReferrerPolicy.h" | 62 #include "platform/weborigin/ReferrerPolicy.h" |
| 62 #include "public/platform/WebFocusType.h" | 63 #include "public/platform/WebFocusType.h" |
| 63 #include "wtf/HashSet.h" | 64 #include "wtf/HashSet.h" |
| 64 #include "wtf/OwnPtr.h" | 65 #include "wtf/OwnPtr.h" |
| 65 #include "wtf/PassOwnPtr.h" | 66 #include "wtf/PassOwnPtr.h" |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 static PassRefPtrWillBeRawPtr<Document> create(const DocumentInit& initializ
er = DocumentInit()) | 232 static PassRefPtrWillBeRawPtr<Document> create(const DocumentInit& initializ
er = DocumentInit()) |
| 232 { | 233 { |
| 233 return adoptRefWillBeNoop(new Document(initializer)); | 234 return adoptRefWillBeNoop(new Document(initializer)); |
| 234 } | 235 } |
| 235 virtual ~Document(); | 236 virtual ~Document(); |
| 236 | 237 |
| 237 MediaQueryMatcher& mediaQueryMatcher(); | 238 MediaQueryMatcher& mediaQueryMatcher(); |
| 238 | 239 |
| 239 void mediaQueryAffectingValueChanged(); | 240 void mediaQueryAffectingValueChanged(); |
| 240 | 241 |
| 242 void textTrackKindUserPreferenceChanged(); |
| 243 |
| 241 #if !ENABLE(OILPAN) | 244 #if !ENABLE(OILPAN) |
| 242 using ContainerNode::ref; | 245 using ContainerNode::ref; |
| 243 using ContainerNode::deref; | 246 using ContainerNode::deref; |
| 244 #endif | 247 #endif |
| 245 using SecurityContext::securityOrigin; | 248 using SecurityContext::securityOrigin; |
| 246 using SecurityContext::contentSecurityPolicy; | 249 using SecurityContext::contentSecurityPolicy; |
| 247 using TreeScope::getElementById; | 250 using TreeScope::getElementById; |
| 248 | 251 |
| 249 virtual bool canContainRangeEndPoint() const override { return true; } | 252 virtual bool canContainRangeEndPoint() const override { return true; } |
| 250 | 253 |
| (...skipping 1191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1442 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); | 1445 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); |
| 1443 | 1446 |
| 1444 } // namespace blink | 1447 } // namespace blink |
| 1445 | 1448 |
| 1446 #ifndef NDEBUG | 1449 #ifndef NDEBUG |
| 1447 // Outside the WebCore namespace for ease of invocation from gdb. | 1450 // Outside the WebCore namespace for ease of invocation from gdb. |
| 1448 CORE_EXPORT void showLiveDocumentInstances(); | 1451 CORE_EXPORT void showLiveDocumentInstances(); |
| 1449 #endif | 1452 #endif |
| 1450 | 1453 |
| 1451 #endif // Document_h | 1454 #endif // Document_h |
| OLD | NEW |