| 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 setTimerAlignmentInterval(double); | 234 void setTimerAlignmentInterval(double); |
| 235 | 235 |
| 236 void setNeedsLayoutInAllFrames(); | 236 void setNeedsLayoutInAllFrames(); |
| 237 | 237 |
| 238 // SettingsDelegate overrides. | 238 // SettingsDelegate overrides. |
| 239 virtual void settingsChanged(SettingsDelegate::ChangeType) OVERRIDE; | 239 virtual void settingsChanged(SettingsDelegate::ChangeType) OVERRIDE; |
| 240 | 240 |
| 241 PageAnimator m_animator; | 241 PageAnimator m_animator; |
| 242 const OwnPtr<AutoscrollController> m_autoscrollController; | 242 const OwnPtr<AutoscrollController> m_autoscrollController; |
| 243 const OwnPtr<Chrome> m_chrome; | 243 const OwnPtr<Chrome> m_chrome; |
| 244 const OwnPtr<DragCaretController> m_dragCaretController; | 244 const OwnPtrWillBeMember<DragCaretController> m_dragCaretController; |
| 245 const OwnPtrWillBeMember<DragController> m_dragController; | 245 const OwnPtrWillBeMember<DragController> m_dragController; |
| 246 const OwnPtr<FocusController> m_focusController; | 246 const OwnPtr<FocusController> m_focusController; |
| 247 const OwnPtr<ContextMenuController> m_contextMenuController; | 247 const OwnPtr<ContextMenuController> m_contextMenuController; |
| 248 const OwnPtr<InspectorController> m_inspectorController; | 248 const OwnPtr<InspectorController> m_inspectorController; |
| 249 const OwnPtr<PointerLockController> m_pointerLockController; | 249 const OwnPtr<PointerLockController> m_pointerLockController; |
| 250 OwnPtr<ScrollingCoordinator> m_scrollingCoordinator; | 250 OwnPtr<ScrollingCoordinator> m_scrollingCoordinator; |
| 251 const OwnPtr<UndoStack> m_undoStack; | 251 const OwnPtr<UndoStack> m_undoStack; |
| 252 | 252 |
| 253 RefPtr<LocalFrame> m_mainFrame; | 253 RefPtr<LocalFrame> m_mainFrame; |
| 254 | 254 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 285 WillBeHeapHashSet<RawPtrWillBeWeakMember<MultisamplingChangedObserver> > m_m
ultisamplingChangedObservers; | 285 WillBeHeapHashSet<RawPtrWillBeWeakMember<MultisamplingChangedObserver> > m_m
ultisamplingChangedObservers; |
| 286 | 286 |
| 287 // 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. |
| 288 // FIXME: Most of the members of Page should move onto FrameHost. | 288 // FIXME: Most of the members of Page should move onto FrameHost. |
| 289 OwnPtrWillBeMember<FrameHost> m_frameHost; | 289 OwnPtrWillBeMember<FrameHost> m_frameHost; |
| 290 }; | 290 }; |
| 291 | 291 |
| 292 } // namespace WebCore | 292 } // namespace WebCore |
| 293 | 293 |
| 294 #endif // Page_h | 294 #endif // Page_h |
| OLD | NEW |