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

Side by Side Diff: Source/core/page/Page.cpp

Issue 822863003: LifecycleObserver::contextDestroyed should be explicitly dispatched promptly when a context is dest… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 12 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/frame/LocalDOMWindow.cpp ('k') | Source/core/workers/WorkerGlobalScope.cpp » ('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) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All R ights Reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All R ights Reserved.
3 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 3 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 606 matching lines...) Expand 10 before | Expand all | Expand 10 after
617 m_scrollingCoordinator->willBeDestroyed(); 617 m_scrollingCoordinator->willBeDestroyed();
618 618
619 #ifndef NDEBUG 619 #ifndef NDEBUG
620 pageCounter.decrement(); 620 pageCounter.decrement();
621 #endif 621 #endif
622 622
623 m_chrome->willBeDestroyed(); 623 m_chrome->willBeDestroyed();
624 if (m_validationMessageClient) 624 if (m_validationMessageClient)
625 m_validationMessageClient->willBeDestroyed(); 625 m_validationMessageClient->willBeDestroyed();
626 m_mainFrame = nullptr; 626 m_mainFrame = nullptr;
627
628 LifecycleContext<Page>::contextDestroyed();
627 } 629 }
628 630
629 Page::PageClients::PageClients() 631 Page::PageClients::PageClients()
630 : chromeClient(nullptr) 632 : chromeClient(nullptr)
631 , contextMenuClient(nullptr) 633 , contextMenuClient(nullptr)
632 , editorClient(nullptr) 634 , editorClient(nullptr)
633 , dragClient(nullptr) 635 , dragClient(nullptr)
634 , inspectorClient(nullptr) 636 , inspectorClient(nullptr)
635 , spellCheckerClient(nullptr) 637 , spellCheckerClient(nullptr)
636 , storageClient(nullptr) 638 , storageClient(nullptr)
637 { 639 {
638 } 640 }
639 641
640 Page::PageClients::~PageClients() 642 Page::PageClients::~PageClients()
641 { 643 {
642 } 644 }
643 645
644 } // namespace blink 646 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/frame/LocalDOMWindow.cpp ('k') | Source/core/workers/WorkerGlobalScope.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698