| 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 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 void initGroup(); | 234 void initGroup(); |
| 235 | 235 |
| 236 #if ASSERT_DISABLED | 236 #if ASSERT_DISABLED |
| 237 void checkSubframeCountConsistency() const { } | 237 void checkSubframeCountConsistency() const { } |
| 238 #else | 238 #else |
| 239 void checkSubframeCountConsistency() const; | 239 void checkSubframeCountConsistency() const; |
| 240 #endif | 240 #endif |
| 241 | 241 |
| 242 void setTimerAlignmentInterval(double); | 242 void setTimerAlignmentInterval(double); |
| 243 | 243 |
| 244 void setNeedsLayoutInAllFrames(); |
| 245 |
| 244 // SettingsDelegate overrides. | 246 // SettingsDelegate overrides. |
| 245 virtual void settingsChanged(SettingsDelegate::ChangeType) OVERRIDE; | 247 virtual void settingsChanged(SettingsDelegate::ChangeType) OVERRIDE; |
| 246 | 248 |
| 247 const OwnPtr<AutoscrollController> m_autoscrollController; | 249 const OwnPtr<AutoscrollController> m_autoscrollController; |
| 248 const OwnPtr<Chrome> m_chrome; | 250 const OwnPtr<Chrome> m_chrome; |
| 249 const OwnPtr<DragCaretController> m_dragCaretController; | 251 const OwnPtr<DragCaretController> m_dragCaretController; |
| 250 const OwnPtr<DragController> m_dragController; | 252 const OwnPtr<DragController> m_dragController; |
| 251 const OwnPtr<FocusController> m_focusController; | 253 const OwnPtr<FocusController> m_focusController; |
| 252 const OwnPtr<ContextMenuController> m_contextMenuController; | 254 const OwnPtr<ContextMenuController> m_contextMenuController; |
| 253 const OwnPtr<InspectorController> m_inspectorController; | 255 const OwnPtr<InspectorController> m_inspectorController; |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 HashSet<MultisamplingChangedObserver*> m_multisamplingChangedObservers; | 298 HashSet<MultisamplingChangedObserver*> m_multisamplingChangedObservers; |
| 297 | 299 |
| 298 // A pointer to all the interfaces provided to in-process Frames for this Pa
ge. | 300 // A pointer to all the interfaces provided to in-process Frames for this Pa
ge. |
| 299 // FIXME: Most of the members of Page should move onto FrameHost. | 301 // FIXME: Most of the members of Page should move onto FrameHost. |
| 300 OwnPtr<FrameHost> m_frameHost; | 302 OwnPtr<FrameHost> m_frameHost; |
| 301 }; | 303 }; |
| 302 | 304 |
| 303 } // namespace WebCore | 305 } // namespace WebCore |
| 304 | 306 |
| 305 #endif // Page_h | 307 #endif // Page_h |
| OLD | NEW |