| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 , m_spellCheckerClient(pageClients.spellCheckerClient) | 72 , m_spellCheckerClient(pageClients.spellCheckerClient) |
| 73 , m_tabKeyCyclesThroughElements(true) | 73 , m_tabKeyCyclesThroughElements(true) |
| 74 , m_deviceScaleFactor(1) | 74 , m_deviceScaleFactor(1) |
| 75 , m_timerAlignmentInterval(DOMTimer::visiblePageAlignmentInterval()) | 75 , m_timerAlignmentInterval(DOMTimer::visiblePageAlignmentInterval()) |
| 76 , m_visibilityState(PageVisibilityStateVisible) | 76 , m_visibilityState(PageVisibilityStateVisible) |
| 77 , m_isCursorVisible(true) | 77 , m_isCursorVisible(true) |
| 78 #if ENABLE(ASSERT) | 78 #if ENABLE(ASSERT) |
| 79 , m_isPainting(false) | 79 , m_isPainting(false) |
| 80 #endif | 80 #endif |
| 81 , m_frameHost(FrameHost::create(*this, services)) | 81 , m_frameHost(FrameHost::create(*this, services)) |
| 82 , m_inspectorHost(0) | |
| 83 { | 82 { |
| 84 ASSERT(m_editorClient); | 83 ASSERT(m_editorClient); |
| 85 | 84 |
| 86 #ifndef NDEBUG | 85 #ifndef NDEBUG |
| 87 pageCounter.increment(); | 86 pageCounter.increment(); |
| 88 #endif | 87 #endif |
| 89 } | 88 } |
| 90 | 89 |
| 91 Page::~Page() | 90 Page::~Page() |
| 92 { | 91 { |
| (...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 , editorClient(0) | 298 , editorClient(0) |
| 300 , spellCheckerClient(0) | 299 , spellCheckerClient(0) |
| 301 { | 300 { |
| 302 } | 301 } |
| 303 | 302 |
| 304 Page::PageClients::~PageClients() | 303 Page::PageClients::~PageClients() |
| 305 { | 304 { |
| 306 } | 305 } |
| 307 | 306 |
| 308 } // namespace blink | 307 } // namespace blink |
| OLD | NEW |