| 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 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 | 215 |
| 216 void setTimerAlignmentInterval(double); | 216 void setTimerAlignmentInterval(double); |
| 217 | 217 |
| 218 void setNeedsLayoutInAllFrames(); | 218 void setNeedsLayoutInAllFrames(); |
| 219 | 219 |
| 220 // SettingsDelegate overrides. | 220 // SettingsDelegate overrides. |
| 221 void settingsChanged(SettingsDelegate::ChangeType) override; | 221 void settingsChanged(SettingsDelegate::ChangeType) override; |
| 222 | 222 |
| 223 RefPtrWillBeMember<PageAnimator> m_animator; | 223 RefPtrWillBeMember<PageAnimator> m_animator; |
| 224 const OwnPtrWillBeMember<AutoscrollController> m_autoscrollController; | 224 const OwnPtrWillBeMember<AutoscrollController> m_autoscrollController; |
| 225 ChromeClient* m_chromeClient; | 225 RawPtrWillBeMember<ChromeClient> m_chromeClient; |
| 226 const OwnPtrWillBeMember<DragCaretController> m_dragCaretController; | 226 const OwnPtrWillBeMember<DragCaretController> m_dragCaretController; |
| 227 const OwnPtrWillBeMember<DragController> m_dragController; | 227 const OwnPtrWillBeMember<DragController> m_dragController; |
| 228 const OwnPtrWillBeMember<FocusController> m_focusController; | 228 const OwnPtrWillBeMember<FocusController> m_focusController; |
| 229 const OwnPtrWillBeMember<ContextMenuController> m_contextMenuController; | 229 const OwnPtrWillBeMember<ContextMenuController> m_contextMenuController; |
| 230 const OwnPtrWillBeMember<PointerLockController> m_pointerLockController; | 230 const OwnPtrWillBeMember<PointerLockController> m_pointerLockController; |
| 231 OwnPtrWillBeMember<ScrollingCoordinator> m_scrollingCoordinator; | 231 OwnPtrWillBeMember<ScrollingCoordinator> m_scrollingCoordinator; |
| 232 const OwnPtrWillBeMember<UndoStack> m_undoStack; | 232 const OwnPtrWillBeMember<UndoStack> m_undoStack; |
| 233 | 233 |
| 234 // Typically, the main frame and Page should both be owned by the embedder, | 234 // Typically, the main frame and Page should both be owned by the embedder, |
| 235 // which must call Page::willBeDestroyed() prior to destroying Page. This | 235 // which must call Page::willBeDestroyed() prior to destroying Page. This |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 OwnPtrWillBeMember<FrameHost> m_frameHost; | 278 OwnPtrWillBeMember<FrameHost> m_frameHost; |
| 279 | 279 |
| 280 OwnPtrWillBeMember<MemoryPurgeController> m_memoryPurgeController; | 280 OwnPtrWillBeMember<MemoryPurgeController> m_memoryPurgeController; |
| 281 }; | 281 }; |
| 282 | 282 |
| 283 extern template class CORE_EXTERN_TEMPLATE_EXPORT WillBeHeapSupplement<Page>; | 283 extern template class CORE_EXTERN_TEMPLATE_EXPORT WillBeHeapSupplement<Page>; |
| 284 | 284 |
| 285 } // namespace blink | 285 } // namespace blink |
| 286 | 286 |
| 287 #endif // Page_h | 287 #endif // Page_h |
| OLD | NEW |