| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All R
ights Reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All R
ights Reserved. |
| 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 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 #include "core/frame/DOMTimer.h" | 31 #include "core/frame/DOMTimer.h" |
| 32 #include "core/frame/DOMWindow.h" | 32 #include "core/frame/DOMWindow.h" |
| 33 #include "core/frame/FrameHost.h" | 33 #include "core/frame/FrameHost.h" |
| 34 #include "core/frame/FrameView.h" | 34 #include "core/frame/FrameView.h" |
| 35 #include "core/frame/LocalFrame.h" | 35 #include "core/frame/LocalFrame.h" |
| 36 #include "core/frame/Settings.h" | 36 #include "core/frame/Settings.h" |
| 37 #include "core/inspector/InspectorController.h" | 37 #include "core/inspector/InspectorController.h" |
| 38 #include "core/inspector/InspectorInstrumentation.h" | 38 #include "core/inspector/InspectorInstrumentation.h" |
| 39 #include "core/loader/FrameLoader.h" | 39 #include "core/loader/FrameLoader.h" |
| 40 #include "core/loader/HistoryItem.h" | 40 #include "core/loader/HistoryItem.h" |
| 41 #include "core/loader/ProgressTracker.h" |
| 41 #include "core/page/AutoscrollController.h" | 42 #include "core/page/AutoscrollController.h" |
| 42 #include "core/page/Chrome.h" | 43 #include "core/page/Chrome.h" |
| 43 #include "core/page/ChromeClient.h" | 44 #include "core/page/ChromeClient.h" |
| 44 #include "core/page/ContextMenuController.h" | 45 #include "core/page/ContextMenuController.h" |
| 45 #include "core/page/DragController.h" | 46 #include "core/page/DragController.h" |
| 46 #include "core/page/FocusController.h" | 47 #include "core/page/FocusController.h" |
| 47 #include "core/page/FrameTree.h" | 48 #include "core/page/FrameTree.h" |
| 48 #include "core/page/PageLifecycleNotifier.h" | 49 #include "core/page/PageLifecycleNotifier.h" |
| 49 #include "core/page/PointerLockController.h" | 50 #include "core/page/PointerLockController.h" |
| 50 #include "core/page/StorageClient.h" | 51 #include "core/page/StorageClient.h" |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 , m_animator(this) | 111 , m_animator(this) |
| 111 , m_autoscrollController(AutoscrollController::create(*this)) | 112 , m_autoscrollController(AutoscrollController::create(*this)) |
| 112 , m_chrome(Chrome::create(this, pageClients.chromeClient)) | 113 , m_chrome(Chrome::create(this, pageClients.chromeClient)) |
| 113 , m_dragCaretController(DragCaretController::create()) | 114 , m_dragCaretController(DragCaretController::create()) |
| 114 , m_dragController(DragController::create(this, pageClients.dragClient)) | 115 , m_dragController(DragController::create(this, pageClients.dragClient)) |
| 115 , m_focusController(FocusController::create(this)) | 116 , m_focusController(FocusController::create(this)) |
| 116 , m_contextMenuController(ContextMenuController::create(this, pageClients.co
ntextMenuClient)) | 117 , m_contextMenuController(ContextMenuController::create(this, pageClients.co
ntextMenuClient)) |
| 117 , m_inspectorController(InspectorController::create(this, pageClients.inspec
torClient)) | 118 , m_inspectorController(InspectorController::create(this, pageClients.inspec
torClient)) |
| 118 , m_pointerLockController(PointerLockController::create(this)) | 119 , m_pointerLockController(PointerLockController::create(this)) |
| 119 , m_historyController(adoptPtr(new HistoryController(this))) | 120 , m_historyController(adoptPtr(new HistoryController(this))) |
| 121 , m_progress(ProgressTracker::create()) |
| 120 , m_undoStack(UndoStack::create()) | 122 , m_undoStack(UndoStack::create()) |
| 121 , m_backForwardClient(pageClients.backForwardClient) | 123 , m_backForwardClient(pageClients.backForwardClient) |
| 122 , m_editorClient(pageClients.editorClient) | 124 , m_editorClient(pageClients.editorClient) |
| 123 , m_validationMessageClient(0) | 125 , m_validationMessageClient(0) |
| 124 , m_spellCheckerClient(pageClients.spellCheckerClient) | 126 , m_spellCheckerClient(pageClients.spellCheckerClient) |
| 125 , m_storageClient(pageClients.storageClient) | 127 , m_storageClient(pageClients.storageClient) |
| 126 , m_subframeCount(0) | 128 , m_subframeCount(0) |
| 127 , m_openedByDOM(false) | 129 , m_openedByDOM(false) |
| 128 , m_tabKeyCyclesThroughElements(true) | 130 , m_tabKeyCyclesThroughElements(true) |
| 129 , m_defersLoading(false) | 131 , m_defersLoading(false) |
| (...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 541 , spellCheckerClient(0) | 543 , spellCheckerClient(0) |
| 542 , storageClient(0) | 544 , storageClient(0) |
| 543 { | 545 { |
| 544 } | 546 } |
| 545 | 547 |
| 546 Page::PageClients::~PageClients() | 548 Page::PageClients::~PageClients() |
| 547 { | 549 { |
| 548 } | 550 } |
| 549 | 551 |
| 550 } // namespace WebCore | 552 } // namespace WebCore |
| OLD | NEW |