| 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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 #include "platform/weborigin/SchemeRegistry.h" | 219 #include "platform/weborigin/SchemeRegistry.h" |
| 220 #include "platform/weborigin/SecurityOrigin.h" | 220 #include "platform/weborigin/SecurityOrigin.h" |
| 221 #include "public/platform/Platform.h" | 221 #include "public/platform/Platform.h" |
| 222 #include "public/platform/WebAddressSpace.h" | 222 #include "public/platform/WebAddressSpace.h" |
| 223 #include "public/platform/WebFrameScheduler.h" | 223 #include "public/platform/WebFrameScheduler.h" |
| 224 #include "public/platform/WebScheduler.h" | 224 #include "public/platform/WebScheduler.h" |
| 225 #include "wtf/CurrentTime.h" | 225 #include "wtf/CurrentTime.h" |
| 226 #include "wtf/DateMath.h" | 226 #include "wtf/DateMath.h" |
| 227 #include "wtf/Functional.h" | 227 #include "wtf/Functional.h" |
| 228 #include "wtf/HashFunctions.h" | 228 #include "wtf/HashFunctions.h" |
| 229 #include "wtf/MainThread.h" | |
| 230 #include "wtf/StdLibExtras.h" | 229 #include "wtf/StdLibExtras.h" |
| 231 #include "wtf/TemporaryChange.h" | 230 #include "wtf/TemporaryChange.h" |
| 232 #include "wtf/text/StringBuffer.h" | 231 #include "wtf/text/StringBuffer.h" |
| 233 #include "wtf/text/TextEncodingRegistry.h" | 232 #include "wtf/text/TextEncodingRegistry.h" |
| 234 | 233 |
| 235 using namespace WTF; | 234 using namespace WTF; |
| 236 using namespace Unicode; | 235 using namespace Unicode; |
| 237 | 236 |
| 238 namespace blink { | 237 namespace blink { |
| 239 | 238 |
| (...skipping 5804 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6044 #ifndef NDEBUG | 6043 #ifndef NDEBUG |
| 6045 using namespace blink; | 6044 using namespace blink; |
| 6046 void showLiveDocumentInstances() | 6045 void showLiveDocumentInstances() |
| 6047 { | 6046 { |
| 6048 Document::WeakDocumentSet& set = Document::liveDocumentSet(); | 6047 Document::WeakDocumentSet& set = Document::liveDocumentSet(); |
| 6049 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); | 6048 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); |
| 6050 for (Document* document : set) | 6049 for (Document* document : set) |
| 6051 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().get
String().utf8().data()); | 6050 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().get
String().utf8().data()); |
| 6052 } | 6051 } |
| 6053 #endif | 6052 #endif |
| OLD | NEW |