summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/core/page/PageLifecycleNotifier.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/core/page/PageLifecycleNotifier.h')
-rw-r--r--chromium/third_party/WebKit/Source/core/page/PageLifecycleNotifier.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/chromium/third_party/WebKit/Source/core/page/PageLifecycleNotifier.h b/chromium/third_party/WebKit/Source/core/page/PageLifecycleNotifier.h
index 5514101ac70..0048320e643 100644
--- a/chromium/third_party/WebKit/Source/core/page/PageLifecycleNotifier.h
+++ b/chromium/third_party/WebKit/Source/core/page/PageLifecycleNotifier.h
@@ -34,14 +34,14 @@
namespace WebCore {
class Page;
-class Frame;
+class LocalFrame;
-class PageLifecycleNotifier : public LifecycleNotifier<Page> {
+class PageLifecycleNotifier FINAL : public LifecycleNotifier<Page> {
public:
static PassOwnPtr<PageLifecycleNotifier> create(Page*);
void notifyPageVisibilityChanged();
- void notifyDidCommitLoad(Frame*);
+ void notifyDidCommitLoad(LocalFrame*);
virtual void addObserver(Observer*) OVERRIDE;
virtual void removeObserver(Observer*) OVERRIDE;
@@ -65,7 +65,7 @@ inline void PageLifecycleNotifier::notifyPageVisibilityChanged()
(*it)->pageVisibilityChanged();
}
-inline void PageLifecycleNotifier::notifyDidCommitLoad(Frame* frame)
+inline void PageLifecycleNotifier::notifyDidCommitLoad(LocalFrame* frame)
{
TemporaryChange<IterationType> scope(this->m_iterating, IteratingOverPageObservers);
for (PageObserverSet::iterator it = m_pageObservers.begin(); it != m_pageObservers.end(); ++it)