Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Side by Side Diff: Source/core/dom/Document.cpp

Issue 1194003004: Oilpan: enable appcache + move DocumentLoader to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: introduce detachFromDocumentLoader() Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | Source/core/frame/LocalDOMWindow.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | Source/core/frame/LocalDOMWindow.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698