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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 , m_autoscrollController(AutoscrollController::create(*this)) | 116 , m_autoscrollController(AutoscrollController::create(*this)) |
117 , m_chromeClient(pageClients.chromeClient) | 117 , m_chromeClient(pageClients.chromeClient) |
118 , m_dragCaretController(DragCaretController::create()) | 118 , m_dragCaretController(DragCaretController::create()) |
119 , m_dragController(DragController::create(this)) | 119 , m_dragController(DragController::create(this)) |
120 , m_focusController(FocusController::create(this)) | 120 , m_focusController(FocusController::create(this)) |
121 , m_contextMenuController(ContextMenuController::create(this, pageClients.co
ntextMenuClient)) | 121 , m_contextMenuController(ContextMenuController::create(this, pageClients.co
ntextMenuClient)) |
122 , m_pointerLockController(PointerLockController::create(this)) | 122 , m_pointerLockController(PointerLockController::create(this)) |
123 , m_mainFrame(nullptr) | 123 , m_mainFrame(nullptr) |
124 , m_editorClient(pageClients.editorClient) | 124 , m_editorClient(pageClients.editorClient) |
125 , m_spellCheckerClient(pageClients.spellCheckerClient) | 125 , m_spellCheckerClient(pageClients.spellCheckerClient) |
| 126 , m_useCounter(pageClients.chromeClient && pageClients.chromeClient->isSVGIm
ageChromeClient() ? UseCounter::SVGImageContext : UseCounter::DefaultContext) |
126 , m_openedByDOM(false) | 127 , m_openedByDOM(false) |
127 , m_tabKeyCyclesThroughElements(true) | 128 , m_tabKeyCyclesThroughElements(true) |
128 , m_defersLoading(false) | 129 , m_defersLoading(false) |
129 , m_deviceScaleFactor(1) | 130 , m_deviceScaleFactor(1) |
130 , m_visibilityState(PageVisibilityStateVisible) | 131 , m_visibilityState(PageVisibilityStateVisible) |
131 , m_isCursorVisible(true) | 132 , m_isCursorVisible(true) |
132 #if ENABLE(ASSERT) | 133 #if ENABLE(ASSERT) |
133 , m_isPainting(false) | 134 , m_isPainting(false) |
134 #endif | 135 #endif |
135 , m_frameHost(FrameHost::create(*this)) | 136 , m_frameHost(FrameHost::create(*this)) |
(...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
521 { | 522 { |
522 } | 523 } |
523 | 524 |
524 Page::PageClients::~PageClients() | 525 Page::PageClients::~PageClients() |
525 { | 526 { |
526 } | 527 } |
527 | 528 |
528 template class CORE_TEMPLATE_EXPORT Supplement<Page>; | 529 template class CORE_TEMPLATE_EXPORT Supplement<Page>; |
529 | 530 |
530 } // namespace blink | 531 } // namespace blink |
OLD | NEW |