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 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 } | 215 } |
216 | 216 |
217 void Page::setMainFrame(PassRefPtr<LocalFrame> mainFrame) | 217 void Page::setMainFrame(PassRefPtr<LocalFrame> mainFrame) |
218 { | 218 { |
219 ASSERT(!m_mainFrame); // Should only be called during initialization | 219 ASSERT(!m_mainFrame); // Should only be called during initialization |
220 m_mainFrame = mainFrame; | 220 m_mainFrame = mainFrame; |
221 } | 221 } |
222 | 222 |
223 void Page::documentDetached(Document* document) | 223 void Page::documentDetached(Document* document) |
224 { | 224 { |
| 225 m_multisamplingChangedObservers.clear(); |
225 m_pointerLockController->documentDetached(document); | 226 m_pointerLockController->documentDetached(document); |
226 m_contextMenuController->documentDetached(document); | 227 m_contextMenuController->documentDetached(document); |
227 if (m_validationMessageClient) | 228 if (m_validationMessageClient) |
228 m_validationMessageClient->documentDetached(*document); | 229 m_validationMessageClient->documentDetached(*document); |
229 } | 230 } |
230 | 231 |
231 bool Page::openedByDOM() const | 232 bool Page::openedByDOM() const |
232 { | 233 { |
233 return m_openedByDOM; | 234 return m_openedByDOM; |
234 } | 235 } |
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
543 , spellCheckerClient(0) | 544 , spellCheckerClient(0) |
544 , storageClient(0) | 545 , storageClient(0) |
545 { | 546 { |
546 } | 547 } |
547 | 548 |
548 Page::PageClients::~PageClients() | 549 Page::PageClients::~PageClients() |
549 { | 550 { |
550 } | 551 } |
551 | 552 |
552 } // namespace WebCore | 553 } // namespace WebCore |
OLD | NEW |