| 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 230 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 241     virtual void settingsChanged(SettingsDelegate::ChangeType) OVERRIDE; | 241     virtual void settingsChanged(SettingsDelegate::ChangeType) OVERRIDE; | 
| 242 | 242 | 
| 243     PageAnimator m_animator; | 243     PageAnimator m_animator; | 
| 244     const OwnPtr<AutoscrollController> m_autoscrollController; | 244     const OwnPtr<AutoscrollController> m_autoscrollController; | 
| 245     const OwnPtr<Chrome> m_chrome; | 245     const OwnPtr<Chrome> m_chrome; | 
| 246     const OwnPtrWillBeMember<DragCaretController> m_dragCaretController; | 246     const OwnPtrWillBeMember<DragCaretController> m_dragCaretController; | 
| 247     const OwnPtrWillBeMember<DragController> m_dragController; | 247     const OwnPtrWillBeMember<DragController> m_dragController; | 
| 248     const OwnPtr<FocusController> m_focusController; | 248     const OwnPtr<FocusController> m_focusController; | 
| 249     const OwnPtr<ContextMenuController> m_contextMenuController; | 249     const OwnPtr<ContextMenuController> m_contextMenuController; | 
| 250     const OwnPtr<InspectorController> m_inspectorController; | 250     const OwnPtr<InspectorController> m_inspectorController; | 
| 251     const OwnPtr<PointerLockController> m_pointerLockController; | 251     const OwnPtrWillBeMember<PointerLockController> m_pointerLockController; | 
| 252     OwnPtr<ScrollingCoordinator> m_scrollingCoordinator; | 252     OwnPtr<ScrollingCoordinator> m_scrollingCoordinator; | 
| 253     const OwnPtr<UndoStack> m_undoStack; | 253     const OwnPtr<UndoStack> m_undoStack; | 
| 254 | 254 | 
| 255     RefPtr<LocalFrame> m_mainFrame; | 255     RefPtr<LocalFrame> m_mainFrame; | 
| 256 | 256 | 
| 257     mutable RefPtr<PluginData> m_pluginData; | 257     mutable RefPtr<PluginData> m_pluginData; | 
| 258 | 258 | 
| 259     BackForwardClient* m_backForwardClient; | 259     BackForwardClient* m_backForwardClient; | 
| 260     EditorClient* const m_editorClient; | 260     EditorClient* const m_editorClient; | 
| 261     SpellCheckerClient* const m_spellCheckerClient; | 261     SpellCheckerClient* const m_spellCheckerClient; | 
| (...skipping 25 matching lines...) Expand all  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 | 
|---|