| 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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 // SettingsDelegate overrides. | 247 // SettingsDelegate overrides. |
| 248 virtual void settingsChanged(SettingsDelegate::ChangeType) OVERRIDE; | 248 virtual void settingsChanged(SettingsDelegate::ChangeType) OVERRIDE; |
| 249 | 249 |
| 250 PageAnimator m_animator; | 250 PageAnimator m_animator; |
| 251 const OwnPtr<AutoscrollController> m_autoscrollController; | 251 const OwnPtr<AutoscrollController> m_autoscrollController; |
| 252 const OwnPtr<Chrome> m_chrome; | 252 const OwnPtr<Chrome> m_chrome; |
| 253 const OwnPtrWillBeMember<DragCaretController> m_dragCaretController; | 253 const OwnPtrWillBeMember<DragCaretController> m_dragCaretController; |
| 254 const OwnPtrWillBeMember<DragController> m_dragController; | 254 const OwnPtrWillBeMember<DragController> m_dragController; |
| 255 const OwnPtr<FocusController> m_focusController; | 255 const OwnPtr<FocusController> m_focusController; |
| 256 const OwnPtrWillBeMember<ContextMenuController> m_contextMenuController; | 256 const OwnPtrWillBeMember<ContextMenuController> m_contextMenuController; |
| 257 const OwnPtr<InspectorController> m_inspectorController; | 257 const OwnPtrWillBeMember<InspectorController> m_inspectorController; |
| 258 const OwnPtrWillBeMember<PointerLockController> m_pointerLockController; | 258 const OwnPtrWillBeMember<PointerLockController> m_pointerLockController; |
| 259 OwnPtr<ScrollingCoordinator> m_scrollingCoordinator; | 259 OwnPtr<ScrollingCoordinator> m_scrollingCoordinator; |
| 260 const OwnPtrWillBeMember<UndoStack> m_undoStack; | 260 const OwnPtrWillBeMember<UndoStack> m_undoStack; |
| 261 | 261 |
| 262 RefPtr<Frame> m_mainFrame; | 262 RefPtr<Frame> m_mainFrame; |
| 263 | 263 |
| 264 mutable RefPtr<PluginData> m_pluginData; | 264 mutable RefPtr<PluginData> m_pluginData; |
| 265 | 265 |
| 266 BackForwardClient* m_backForwardClient; | 266 BackForwardClient* m_backForwardClient; |
| 267 EditorClient* const m_editorClient; | 267 EditorClient* const m_editorClient; |
| (...skipping 26 matching lines...) Expand all Loading... |
| 294 WillBeHeapHashSet<RawPtrWillBeWeakMember<MultisamplingChangedObserver> > m_m
ultisamplingChangedObservers; | 294 WillBeHeapHashSet<RawPtrWillBeWeakMember<MultisamplingChangedObserver> > m_m
ultisamplingChangedObservers; |
| 295 | 295 |
| 296 // A pointer to all the interfaces provided to in-process Frames for this Pa
ge. | 296 // A pointer to all the interfaces provided to in-process Frames for this Pa
ge. |
| 297 // FIXME: Most of the members of Page should move onto FrameHost. | 297 // FIXME: Most of the members of Page should move onto FrameHost. |
| 298 OwnPtrWillBeMember<FrameHost> m_frameHost; | 298 OwnPtrWillBeMember<FrameHost> m_frameHost; |
| 299 }; | 299 }; |
| 300 | 300 |
| 301 } // namespace WebCore | 301 } // namespace WebCore |
| 302 | 302 |
| 303 #endif // Page_h | 303 #endif // Page_h |
| OLD | NEW |