| 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 2904 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2915 DOMTimerCoordinator* Document::timers() | 2915 DOMTimerCoordinator* Document::timers() |
| 2916 { | 2916 { |
| 2917 return &m_timers; | 2917 return &m_timers; |
| 2918 } | 2918 } |
| 2919 | 2919 |
| 2920 EventTarget* Document::errorEventTarget() | 2920 EventTarget* Document::errorEventTarget() |
| 2921 { | 2921 { |
| 2922 return domWindow(); | 2922 return domWindow(); |
| 2923 } | 2923 } |
| 2924 | 2924 |
| 2925 void Document::logExceptionToConsole(const String& errorMessage, int scriptId, c
onst String& sourceURL, int lineNumber, int columnNumber, PassRefPtrWillBeRawPtr
<ScriptCallStack> callStack) | 2925 void Document::logExceptionToConsole(const String& errorMessage, int scriptId, c
onst String& sourceURL, int lineNumber, int columnNumber, PassRefPtr<ScriptCallS
tack> callStack) |
| 2926 { | 2926 { |
| 2927 RefPtrWillBeRawPtr<ConsoleMessage> consoleMessage = ConsoleMessage::create(J
SMessageSource, ErrorMessageLevel, errorMessage, sourceURL, lineNumber, columnNu
mber); | 2927 RefPtrWillBeRawPtr<ConsoleMessage> consoleMessage = ConsoleMessage::create(J
SMessageSource, ErrorMessageLevel, errorMessage, sourceURL, lineNumber, columnNu
mber); |
| 2928 consoleMessage->setScriptId(scriptId); | 2928 consoleMessage->setScriptId(scriptId); |
| 2929 consoleMessage->setCallStack(callStack); | 2929 consoleMessage->setCallStack(callStack); |
| 2930 addConsoleMessage(consoleMessage.release()); | 2930 addConsoleMessage(consoleMessage.release()); |
| 2931 } | 2931 } |
| 2932 | 2932 |
| 2933 void Document::setURL(const KURL& url) | 2933 void Document::setURL(const KURL& url) |
| 2934 { | 2934 { |
| 2935 const KURL& newURL = url.isEmpty() ? blankURL() : url; | 2935 const KURL& newURL = url.isEmpty() ? blankURL() : url; |
| (...skipping 2980 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5916 #ifndef NDEBUG | 5916 #ifndef NDEBUG |
| 5917 using namespace blink; | 5917 using namespace blink; |
| 5918 void showLiveDocumentInstances() | 5918 void showLiveDocumentInstances() |
| 5919 { | 5919 { |
| 5920 Document::WeakDocumentSet& set = Document::liveDocumentSet(); | 5920 Document::WeakDocumentSet& set = Document::liveDocumentSet(); |
| 5921 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); | 5921 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); |
| 5922 for (Document* document : set) | 5922 for (Document* document : set) |
| 5923 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str
ing().utf8().data()); | 5923 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str
ing().utf8().data()); |
| 5924 } | 5924 } |
| 5925 #endif | 5925 #endif |
| OLD | NEW |