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

Unified Diff: Source/core/frame/LocalDOMWindow.cpp

Issue 1026253002: Rename FrameDestructionObserver to LocalFrameLifecycleObserver. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebased Created 5 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/frame/LocalDOMWindow.h ('k') | Source/core/frame/LocalFrame.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/LocalDOMWindow.cpp
diff --git a/Source/core/frame/LocalDOMWindow.cpp b/Source/core/frame/LocalDOMWindow.cpp
index 25b37535922d5daeb692d119fa68d52f65c32a85..8b5a653f1355ed5b4eb83d9fd9c6b9d802cfab91 100644
--- a/Source/core/frame/LocalDOMWindow.cpp
+++ b/Source/core/frame/LocalDOMWindow.cpp
@@ -112,7 +112,7 @@ using std::max;
namespace blink {
LocalDOMWindow::WindowFrameObserver::WindowFrameObserver(LocalDOMWindow* window, LocalFrame& frame)
- : FrameDestructionObserver(&frame)
+ : LocalFrameLifecycleObserver(&frame)
, m_window(window)
{
}
@@ -131,7 +131,7 @@ LocalDOMWindow::WindowFrameObserver::~WindowFrameObserver()
DEFINE_TRACE(LocalDOMWindow::WindowFrameObserver)
{
visitor->trace(m_window);
- FrameDestructionObserver::trace(visitor);
+ LocalFrameLifecycleObserver::trace(visitor);
}
void LocalDOMWindow::WindowFrameObserver::willDetachFrameHost()
@@ -142,7 +142,7 @@ void LocalDOMWindow::WindowFrameObserver::willDetachFrameHost()
void LocalDOMWindow::WindowFrameObserver::contextDestroyed()
{
m_window->frameDestroyed();
- FrameDestructionObserver::contextDestroyed();
+ LocalFrameLifecycleObserver::contextDestroyed();
}
class PostMessageTimer final : public NoBaseWillBeGarbageCollectedFinalized<PostMessageTimer>, public SuspendableTimer {
« no previous file with comments | « Source/core/frame/LocalDOMWindow.h ('k') | Source/core/frame/LocalFrame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698