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 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
220 | 220 |
221 void trace(Visitor*); | 221 void trace(Visitor*); |
222 void willBeDestroyed(); | 222 void willBeDestroyed(); |
223 | 223 |
224 protected: | 224 protected: |
225 PageLifecycleNotifier& lifecycleNotifier(); | 225 PageLifecycleNotifier& lifecycleNotifier(); |
226 | 226 |
227 private: | 227 private: |
228 void initGroup(); | 228 void initGroup(); |
229 | 229 |
230 #if ASSERT_DISABLED | 230 #if ASSERT_ENABLED |
| 231 void checkSubframeCountConsistency() const; |
| 232 #else |
231 void checkSubframeCountConsistency() const { } | 233 void checkSubframeCountConsistency() const { } |
232 #else | |
233 void checkSubframeCountConsistency() const; | |
234 #endif | 234 #endif |
235 | 235 |
236 void setTimerAlignmentInterval(double); | 236 void setTimerAlignmentInterval(double); |
237 | 237 |
238 void setNeedsLayoutInAllFrames(); | 238 void setNeedsLayoutInAllFrames(); |
239 | 239 |
240 // SettingsDelegate overrides. | 240 // SettingsDelegate overrides. |
241 virtual void settingsChanged(SettingsDelegate::ChangeType) OVERRIDE; | 241 virtual void settingsChanged(SettingsDelegate::ChangeType) OVERRIDE; |
242 | 242 |
243 PageAnimator m_animator; | 243 PageAnimator m_animator; |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
287 WillBeHeapHashSet<RawPtrWillBeWeakMember<MultisamplingChangedObserver> > m_m
ultisamplingChangedObservers; | 287 WillBeHeapHashSet<RawPtrWillBeWeakMember<MultisamplingChangedObserver> > m_m
ultisamplingChangedObservers; |
288 | 288 |
289 // A pointer to all the interfaces provided to in-process Frames for this Pa
ge. | 289 // A pointer to all the interfaces provided to in-process Frames for this Pa
ge. |
290 // FIXME: Most of the members of Page should move onto FrameHost. | 290 // FIXME: Most of the members of Page should move onto FrameHost. |
291 OwnPtrWillBeMember<FrameHost> m_frameHost; | 291 OwnPtrWillBeMember<FrameHost> m_frameHost; |
292 }; | 292 }; |
293 | 293 |
294 } // namespace WebCore | 294 } // namespace WebCore |
295 | 295 |
296 #endif // Page_h | 296 #endif // Page_h |
OLD | NEW |