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 2635 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2646 if (m_loadEventProgress < PageHideInProgress) { | 2646 if (m_loadEventProgress < PageHideInProgress) { |
2647 m_loadEventProgress = PageHideInProgress; | 2647 m_loadEventProgress = PageHideInProgress; |
2648 if (LocalDOMWindow* window = domWindow()) | 2648 if (LocalDOMWindow* window = domWindow()) |
2649 window->dispatchEvent(PageTransitionEvent::create(EventTypeNames ::pagehide, false), this); | 2649 window->dispatchEvent(PageTransitionEvent::create(EventTypeNames ::pagehide, false), this); |
2650 if (!m_frame) | 2650 if (!m_frame) |
2651 return; | 2651 return; |
2652 | 2652 |
2653 // The DocumentLoader (and thus its DocumentLoadTiming) might get de stroyed | 2653 // The DocumentLoader (and thus its DocumentLoadTiming) might get de stroyed |
2654 // while dispatching the event, so protect it to prevent writing the end | 2654 // while dispatching the event, so protect it to prevent writing the end |
2655 // time into freed memory. | 2655 // time into freed memory. |
2656 RefPtr<DocumentLoader> documentLoader = m_frame->loader().provision alDocumentLoader(); | 2656 RefPtrWillBeRawPtr<DocumentLoader> documentLoader = m_frame->loader ().provisionalDocumentLoader(); |
sof
2015/06/22 06:55:16
Redundant space present on RHS; removed.
| |
2657 m_loadEventProgress = UnloadEventInProgress; | 2657 m_loadEventProgress = UnloadEventInProgress; |
2658 RefPtrWillBeRawPtr<Event> unloadEvent(Event::create(EventTypeNames:: unload)); | 2658 RefPtrWillBeRawPtr<Event> unloadEvent(Event::create(EventTypeNames:: unload)); |
2659 if (documentLoader && !documentLoader->timing().unloadEventStart() & & !documentLoader->timing().unloadEventEnd()) { | 2659 if (documentLoader && !documentLoader->timing().unloadEventStart() & & !documentLoader->timing().unloadEventEnd()) { |
2660 DocumentLoadTiming& timing = documentLoader->timing(); | 2660 DocumentLoadTiming& timing = documentLoader->timing(); |
2661 ASSERT(timing.navigationStart()); | 2661 ASSERT(timing.navigationStart()); |
2662 timing.markUnloadEventStart(); | 2662 timing.markUnloadEventStart(); |
2663 m_frame->localDOMWindow()->dispatchEvent(unloadEvent, this); | 2663 m_frame->localDOMWindow()->dispatchEvent(unloadEvent, this); |
2664 timing.markUnloadEventEnd(); | 2664 timing.markUnloadEventEnd(); |
2665 } else { | 2665 } else { |
2666 m_frame->localDOMWindow()->dispatchEvent(unloadEvent, m_frame->d ocument()); | 2666 m_frame->localDOMWindow()->dispatchEvent(unloadEvent, m_frame->d ocument()); |
(...skipping 3100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
5767 #ifndef NDEBUG | 5767 #ifndef NDEBUG |
5768 using namespace blink; | 5768 using namespace blink; |
5769 void showLiveDocumentInstances() | 5769 void showLiveDocumentInstances() |
5770 { | 5770 { |
5771 WeakDocumentSet& set = liveDocumentSet(); | 5771 WeakDocumentSet& set = liveDocumentSet(); |
5772 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); | 5772 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); |
5773 for (Document* document : set) | 5773 for (Document* document : set) |
5774 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str ing().utf8().data()); | 5774 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str ing().utf8().data()); |
5775 } | 5775 } |
5776 #endif | 5776 #endif |
OLD | NEW |