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

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

Issue 490143002: Move GeolocationClient to the Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Provide default empty impl of WebGeolocationClient::geolocationDestroyed() virtual Created 6 years, 4 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
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 612 matching lines...) Expand 10 before | Expand all | Expand 10 after
623 m_scrollingCoordinator->willBeDestroyed(); 623 m_scrollingCoordinator->willBeDestroyed();
624 624
625 #ifndef NDEBUG 625 #ifndef NDEBUG
626 pageCounter.decrement(); 626 pageCounter.decrement();
627 #endif 627 #endif
628 628
629 m_chrome->willBeDestroyed(); 629 m_chrome->willBeDestroyed();
630 m_mainFrame = 0; 630 m_mainFrame = 0;
631 if (m_validationMessageClient) 631 if (m_validationMessageClient)
632 m_validationMessageClient->willBeDestroyed(); 632 m_validationMessageClient->willBeDestroyed();
633 WillBeHeapSupplementable<Page>::willBeDestroyed();
634 } 633 }
635 634
636 Page::PageClients::PageClients() 635 Page::PageClients::PageClients()
637 : chromeClient(0) 636 : chromeClient(0)
638 , contextMenuClient(0) 637 , contextMenuClient(0)
639 , editorClient(0) 638 , editorClient(0)
640 , dragClient(0) 639 , dragClient(0)
641 , inspectorClient(0) 640 , inspectorClient(0)
642 , backForwardClient(0) 641 , backForwardClient(0)
643 , spellCheckerClient(0) 642 , spellCheckerClient(0)
644 , storageClient(0) 643 , storageClient(0)
645 { 644 {
646 } 645 }
647 646
648 Page::PageClients::~PageClients() 647 Page::PageClients::~PageClients()
649 { 648 {
650 } 649 }
651 650
652 } // namespace blink 651 } // namespace blink
OLDNEW
« no previous file with comments | « no previous file | Source/modules/geolocation/GeolocationClient.h » ('j') | public/web/WebGeolocationClient.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698