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

Unified Diff: Source/modules/screen_orientation/ScreenOrientationController.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
Index: Source/modules/screen_orientation/ScreenOrientationController.cpp
diff --git a/Source/modules/screen_orientation/ScreenOrientationController.cpp b/Source/modules/screen_orientation/ScreenOrientationController.cpp
index 60dd9b42e25c637dc4a985f4d0b8c4e11dd99197..9ea7c471dd53915318dc6d82c784382414c527a7 100644
--- a/Source/modules/screen_orientation/ScreenOrientationController.cpp
+++ b/Source/modules/screen_orientation/ScreenOrientationController.cpp
@@ -35,7 +35,7 @@ ScreenOrientationController* ScreenOrientationController::from(LocalFrame& frame
}
ScreenOrientationController::ScreenOrientationController(LocalFrame& frame, WebScreenOrientationClient* client)
- : FrameDestructionObserver(&frame)
+ : LocalFrameLifecycleObserver(&frame)
, PlatformEventController(frame.page())
, m_client(client)
, m_dispatchEventTimer(this, &ScreenOrientationController::dispatchEventTimerFired)
@@ -212,7 +212,7 @@ void ScreenOrientationController::notifyDispatcher()
DEFINE_TRACE(ScreenOrientationController)
{
visitor->trace(m_orientation);
- FrameDestructionObserver::trace(visitor);
+ LocalFrameLifecycleObserver::trace(visitor);
WillBeHeapSupplement<LocalFrame>::trace(visitor);
PlatformEventController::trace(visitor);
}
« no previous file with comments | « Source/modules/screen_orientation/ScreenOrientationController.h ('k') | Source/modules/storage/StorageArea.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698