| 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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 | 177 |
| 178 Chrome* chrome() const { return m_chrome.get(); } | 178 Chrome* chrome() const { return m_chrome.get(); } |
| 179 DragCaretController* dragCaretController() const { return m_dragCaretControl
ler.get(); } | 179 DragCaretController* dragCaretController() const { return m_dragCaretControl
ler.get(); } |
| 180 #if ENABLE(DRAG_SUPPORT) | 180 #if ENABLE(DRAG_SUPPORT) |
| 181 DragController* dragController() const { return m_dragController.get(); } | 181 DragController* dragController() const { return m_dragController.get(); } |
| 182 #endif | 182 #endif |
| 183 FocusController* focusController() const { return m_focusController.get(); } | 183 FocusController* focusController() const { return m_focusController.get(); } |
| 184 #if ENABLE(CONTEXT_MENUS) | 184 #if ENABLE(CONTEXT_MENUS) |
| 185 ContextMenuController* contextMenuController() const { return m_contextMenuC
ontroller.get(); } | 185 ContextMenuController* contextMenuController() const { return m_contextMenuC
ontroller.get(); } |
| 186 #endif | 186 #endif |
| 187 #if ENABLE(INSPECTOR) | |
| 188 InspectorController* inspectorController() const { return m_inspectorControl
ler.get(); } | 187 InspectorController* inspectorController() const { return m_inspectorControl
ler.get(); } |
| 189 #endif | |
| 190 #if ENABLE(POINTER_LOCK) | 188 #if ENABLE(POINTER_LOCK) |
| 191 PointerLockController* pointerLockController() const { return m_pointerLockC
ontroller.get(); } | 189 PointerLockController* pointerLockController() const { return m_pointerLockC
ontroller.get(); } |
| 192 #endif | 190 #endif |
| 193 ValidationMessageClient* validationMessageClient() const { return m_validati
onMessageClient; } | 191 ValidationMessageClient* validationMessageClient() const { return m_validati
onMessageClient; } |
| 194 | 192 |
| 195 ScrollingCoordinator* scrollingCoordinator(); | 193 ScrollingCoordinator* scrollingCoordinator(); |
| 196 | 194 |
| 197 String scrollingStateTreeAsText(); | 195 String scrollingStateTreeAsText(); |
| 198 String mainThreadScrollingReasonsAsText(); | 196 String mainThreadScrollingReasonsAsText(); |
| 199 PassRefPtr<ClientRectList> nonFastScrollableRects(const Frame*); | 197 PassRefPtr<ClientRectList> nonFastScrollableRects(const Frame*); |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 408 OwnPtr<Chrome> m_chrome; | 406 OwnPtr<Chrome> m_chrome; |
| 409 OwnPtr<DragCaretController> m_dragCaretController; | 407 OwnPtr<DragCaretController> m_dragCaretController; |
| 410 | 408 |
| 411 #if ENABLE(DRAG_SUPPORT) | 409 #if ENABLE(DRAG_SUPPORT) |
| 412 OwnPtr<DragController> m_dragController; | 410 OwnPtr<DragController> m_dragController; |
| 413 #endif | 411 #endif |
| 414 OwnPtr<FocusController> m_focusController; | 412 OwnPtr<FocusController> m_focusController; |
| 415 #if ENABLE(CONTEXT_MENUS) | 413 #if ENABLE(CONTEXT_MENUS) |
| 416 OwnPtr<ContextMenuController> m_contextMenuController; | 414 OwnPtr<ContextMenuController> m_contextMenuController; |
| 417 #endif | 415 #endif |
| 418 #if ENABLE(INSPECTOR) | |
| 419 OwnPtr<InspectorController> m_inspectorController; | 416 OwnPtr<InspectorController> m_inspectorController; |
| 420 #endif | |
| 421 #if ENABLE(POINTER_LOCK) | 417 #if ENABLE(POINTER_LOCK) |
| 422 OwnPtr<PointerLockController> m_pointerLockController; | 418 OwnPtr<PointerLockController> m_pointerLockController; |
| 423 #endif | 419 #endif |
| 424 RefPtr<ScrollingCoordinator> m_scrollingCoordinator; | 420 RefPtr<ScrollingCoordinator> m_scrollingCoordinator; |
| 425 | 421 |
| 426 OwnPtr<Settings> m_settings; | 422 OwnPtr<Settings> m_settings; |
| 427 OwnPtr<ProgressTracker> m_progress; | 423 OwnPtr<ProgressTracker> m_progress; |
| 428 | 424 |
| 429 OwnPtr<BackForwardController> m_backForwardController; | 425 OwnPtr<BackForwardController> m_backForwardController; |
| 430 RefPtr<Frame> m_mainFrame; | 426 RefPtr<Frame> m_mainFrame; |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 513 inline PageGroup& Page::group() | 509 inline PageGroup& Page::group() |
| 514 { | 510 { |
| 515 if (!m_group) | 511 if (!m_group) |
| 516 initGroup(); | 512 initGroup(); |
| 517 return *m_group; | 513 return *m_group; |
| 518 } | 514 } |
| 519 | 515 |
| 520 } // namespace WebCore | 516 } // namespace WebCore |
| 521 | 517 |
| 522 #endif // Page_h | 518 #endif // Page_h |
| OLD | NEW |