| 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 #include "sky/engine/core/events/Event.h" | 81 #include "sky/engine/core/events/Event.h" |
| 82 #include "sky/engine/core/events/EventFactory.h" | 82 #include "sky/engine/core/events/EventFactory.h" |
| 83 #include "sky/engine/core/events/EventListener.h" | 83 #include "sky/engine/core/events/EventListener.h" |
| 84 #include "sky/engine/core/events/HashChangeEvent.h" | 84 #include "sky/engine/core/events/HashChangeEvent.h" |
| 85 #include "sky/engine/core/events/PageTransitionEvent.h" | 85 #include "sky/engine/core/events/PageTransitionEvent.h" |
| 86 #include "sky/engine/core/events/ScopedEventQueue.h" | 86 #include "sky/engine/core/events/ScopedEventQueue.h" |
| 87 #include "sky/engine/core/fetch/ResourceFetcher.h" | 87 #include "sky/engine/core/fetch/ResourceFetcher.h" |
| 88 #include "sky/engine/core/frame/FrameConsole.h" | 88 #include "sky/engine/core/frame/FrameConsole.h" |
| 89 #include "sky/engine/core/frame/FrameHost.h" | 89 #include "sky/engine/core/frame/FrameHost.h" |
| 90 #include "sky/engine/core/frame/FrameView.h" | 90 #include "sky/engine/core/frame/FrameView.h" |
| 91 #include "sky/engine/core/frame/History.h" | |
| 92 #include "sky/engine/core/frame/LocalDOMWindow.h" | 91 #include "sky/engine/core/frame/LocalDOMWindow.h" |
| 93 #include "sky/engine/core/frame/LocalFrame.h" | 92 #include "sky/engine/core/frame/LocalFrame.h" |
| 94 #include "sky/engine/core/frame/Settings.h" | 93 #include "sky/engine/core/frame/Settings.h" |
| 95 #include "sky/engine/core/html/HTMLAnchorElement.h" | 94 #include "sky/engine/core/html/HTMLAnchorElement.h" |
| 96 #include "sky/engine/core/html/HTMLCanvasElement.h" | 95 #include "sky/engine/core/html/HTMLCanvasElement.h" |
| 97 #include "sky/engine/core/html/HTMLDocument.h" | 96 #include "sky/engine/core/html/HTMLDocument.h" |
| 98 #include "sky/engine/core/html/HTMLScriptElement.h" | 97 #include "sky/engine/core/html/HTMLScriptElement.h" |
| 99 #include "sky/engine/core/html/HTMLStyleElement.h" | 98 #include "sky/engine/core/html/HTMLStyleElement.h" |
| 100 #include "sky/engine/core/html/HTMLTemplateElement.h" | 99 #include "sky/engine/core/html/HTMLTemplateElement.h" |
| 101 #include "sky/engine/core/html/HTMLTitleElement.h" | 100 #include "sky/engine/core/html/HTMLTitleElement.h" |
| (...skipping 2303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2405 using namespace blink; | 2404 using namespace blink; |
| 2406 void showLiveDocumentInstances() | 2405 void showLiveDocumentInstances() |
| 2407 { | 2406 { |
| 2408 WeakDocumentSet& set = liveDocumentSet(); | 2407 WeakDocumentSet& set = liveDocumentSet(); |
| 2409 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); | 2408 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); |
| 2410 for (WeakDocumentSet::const_iterator it = set.begin(); it != set.end(); ++it
) { | 2409 for (WeakDocumentSet::const_iterator it = set.begin(); it != set.end(); ++it
) { |
| 2411 fprintf(stderr, "- Document %p URL: %s\n", *it, (*it)->url().string().ut
f8().data()); | 2410 fprintf(stderr, "- Document %p URL: %s\n", *it, (*it)->url().string().ut
f8().data()); |
| 2412 } | 2411 } |
| 2413 } | 2412 } |
| 2414 #endif | 2413 #endif |
| OLD | NEW |