| 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 489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 500 break; | 500 break; |
| 501 case SettingsDelegate::TextAutosizingChange: | 501 case SettingsDelegate::TextAutosizingChange: |
| 502 // FIXME: I wonder if this needs to traverse frames like in WebViewImpl:
:resize, or whether there is only one document per Settings instance? | 502 // FIXME: I wonder if this needs to traverse frames like in WebViewImpl:
:resize, or whether there is only one document per Settings instance? |
| 503 for (Frame* frame = mainFrame(); frame; frame = frame->tree().traverseNe
xt()) { | 503 for (Frame* frame = mainFrame(); frame; frame = frame->tree().traverseNe
xt()) { |
| 504 TextAutosizer* textAutosizer = frame->document()->textAutosizer(); | 504 TextAutosizer* textAutosizer = frame->document()->textAutosizer(); |
| 505 if (textAutosizer) | 505 if (textAutosizer) |
| 506 textAutosizer->recalculateMultipliers(); | 506 textAutosizer->recalculateMultipliers(); |
| 507 } | 507 } |
| 508 setNeedsRecalcStyleInAllFrames(); | 508 setNeedsRecalcStyleInAllFrames(); |
| 509 break; | 509 break; |
| 510 default: |
| 511 break; |
| 510 } | 512 } |
| 513 m_inspectorController->settingsChanged(); |
| 511 } | 514 } |
| 512 | 515 |
| 513 void Page::didCommitLoad(Frame* frame) | 516 void Page::didCommitLoad(Frame* frame) |
| 514 { | 517 { |
| 515 lifecycleNotifier().notifyDidCommitLoad(frame); | 518 lifecycleNotifier().notifyDidCommitLoad(frame); |
| 516 if (m_mainFrame == frame) | 519 if (m_mainFrame == frame) |
| 517 useCounter().didCommitLoad(); | 520 useCounter().didCommitLoad(); |
| 518 } | 521 } |
| 519 | 522 |
| 520 PageLifecycleNotifier& Page::lifecycleNotifier() | 523 PageLifecycleNotifier& Page::lifecycleNotifier() |
| (...skipping 15 matching lines...) Expand all Loading... |
| 536 , backForwardClient(0) | 539 , backForwardClient(0) |
| 537 , spellCheckerClient(0) | 540 , spellCheckerClient(0) |
| 538 { | 541 { |
| 539 } | 542 } |
| 540 | 543 |
| 541 Page::PageClients::~PageClients() | 544 Page::PageClients::~PageClients() |
| 542 { | 545 { |
| 543 } | 546 } |
| 544 | 547 |
| 545 } // namespace WebCore | 548 } // namespace WebCore |
| OLD | NEW |