| 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, 2011, 2012 Apple Inc. All r
ights reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 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) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. | 8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. |
| 9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
| 10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. | 10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 #include "platform/weborigin/SecurityOrigin.h" | 192 #include "platform/weborigin/SecurityOrigin.h" |
| 193 #include "public/platform/Platform.h" | 193 #include "public/platform/Platform.h" |
| 194 #include "wtf/CurrentTime.h" | 194 #include "wtf/CurrentTime.h" |
| 195 #include "wtf/HashFunctions.h" | 195 #include "wtf/HashFunctions.h" |
| 196 #include "wtf/MainThread.h" | 196 #include "wtf/MainThread.h" |
| 197 #include "wtf/StdLibExtras.h" | 197 #include "wtf/StdLibExtras.h" |
| 198 #include "wtf/TemporaryChange.h" | 198 #include "wtf/TemporaryChange.h" |
| 199 #include "wtf/text/StringBuffer.h" | 199 #include "wtf/text/StringBuffer.h" |
| 200 #include "wtf/text/TextEncodingRegistry.h" | 200 #include "wtf/text/TextEncodingRegistry.h" |
| 201 | 201 |
| 202 using namespace std; | |
| 203 using namespace WTF; | 202 using namespace WTF; |
| 204 using namespace Unicode; | 203 using namespace Unicode; |
| 205 | 204 |
| 206 namespace WebCore { | 205 namespace WebCore { |
| 207 | 206 |
| 208 using namespace HTMLNames; | 207 using namespace HTMLNames; |
| 209 | 208 |
| 210 static const unsigned cMaxWriteRecursionDepth = 21; | 209 static const unsigned cMaxWriteRecursionDepth = 21; |
| 211 | 210 |
| 212 // This amount of time must have elapsed before we will even consider scheduling
a layout without a delay. | 211 // This amount of time must have elapsed before we will even consider scheduling
a layout without a delay. |
| (...skipping 5636 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5849 visitor->trace(m_compositorPendingAnimations); | 5848 visitor->trace(m_compositorPendingAnimations); |
| 5850 visitor->trace(m_contextDocument); | 5849 visitor->trace(m_contextDocument); |
| 5851 visitor->registerWeakMembers<Document, &Document::clearWeakMembers>(this); | 5850 visitor->registerWeakMembers<Document, &Document::clearWeakMembers>(this); |
| 5852 DocumentSupplementable::trace(visitor); | 5851 DocumentSupplementable::trace(visitor); |
| 5853 TreeScope::trace(visitor); | 5852 TreeScope::trace(visitor); |
| 5854 ContainerNode::trace(visitor); | 5853 ContainerNode::trace(visitor); |
| 5855 ExecutionContext::trace(visitor); | 5854 ExecutionContext::trace(visitor); |
| 5856 } | 5855 } |
| 5857 | 5856 |
| 5858 } // namespace WebCore | 5857 } // namespace WebCore |
| OLD | NEW |