OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights reserv
ed. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights reserv
ed. |
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 * | 9 * |
10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 | 210 |
211 void addMultisamplingChangedObserver(MultisamplingChangedObserver*); | 211 void addMultisamplingChangedObserver(MultisamplingChangedObserver*); |
212 void removeMultisamplingChangedObserver(MultisamplingChangedObserver*); | 212 void removeMultisamplingChangedObserver(MultisamplingChangedObserver*); |
213 | 213 |
214 void didCommitLoad(LocalFrame*); | 214 void didCommitLoad(LocalFrame*); |
215 | 215 |
216 static void networkStateChanged(bool online); | 216 static void networkStateChanged(bool online); |
217 PassOwnPtr<LifecycleNotifier<Page> > createLifecycleNotifier(); | 217 PassOwnPtr<LifecycleNotifier<Page> > createLifecycleNotifier(); |
218 | 218 |
219 void trace(Visitor*); | 219 void trace(Visitor*); |
220 void clearWeakMembers(Visitor*); | |
221 void willBeDestroyed(); | 220 void willBeDestroyed(); |
222 | 221 |
223 protected: | 222 protected: |
224 PageLifecycleNotifier& lifecycleNotifier(); | 223 PageLifecycleNotifier& lifecycleNotifier(); |
225 | 224 |
226 private: | 225 private: |
227 void initGroup(); | 226 void initGroup(); |
228 | 227 |
229 #if ASSERT_DISABLED | 228 #if ASSERT_DISABLED |
230 void checkSubframeCountConsistency() const { } | 229 void checkSubframeCountConsistency() const { } |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
286 WillBeHeapHashSet<RawPtrWillBeWeakMember<MultisamplingChangedObserver> > m_m
ultisamplingChangedObservers; | 285 WillBeHeapHashSet<RawPtrWillBeWeakMember<MultisamplingChangedObserver> > m_m
ultisamplingChangedObservers; |
287 | 286 |
288 // A pointer to all the interfaces provided to in-process Frames for this Pa
ge. | 287 // A pointer to all the interfaces provided to in-process Frames for this Pa
ge. |
289 // FIXME: Most of the members of Page should move onto FrameHost. | 288 // FIXME: Most of the members of Page should move onto FrameHost. |
290 OwnPtr<FrameHost> m_frameHost; | 289 OwnPtr<FrameHost> m_frameHost; |
291 }; | 290 }; |
292 | 291 |
293 } // namespace WebCore | 292 } // namespace WebCore |
294 | 293 |
295 #endif // Page_h | 294 #endif // Page_h |
OLD | NEW |