| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2009, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2009, 2011 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2008, 2010 Nokia Corporation and/or its subsidiary(-ies) | 3 * Copyright (C) 2008, 2010 Nokia Corporation and/or its subsidiary(-ies) |
| 4 * Copyright (C) 2012, Samsung Electronics. All rights reserved. | 4 * Copyright (C) 2012, Samsung Electronics. All rights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 514 void Chrome::scheduleAnimation() | 514 void Chrome::scheduleAnimation() |
| 515 { | 515 { |
| 516 #if !USE(REQUEST_ANIMATION_FRAME_TIMER) | 516 #if !USE(REQUEST_ANIMATION_FRAME_TIMER) |
| 517 m_client->scheduleAnimation(); | 517 m_client->scheduleAnimation(); |
| 518 #endif | 518 #endif |
| 519 } | 519 } |
| 520 #endif | 520 #endif |
| 521 | 521 |
| 522 // -------- | 522 // -------- |
| 523 | 523 |
| 524 #if ENABLE(DASHBOARD_SUPPORT) || ENABLE(DRAGGABLE_REGION) | 524 #if ENABLE(DRAGGABLE_REGION) |
| 525 void ChromeClient::annotatedRegionsChanged() | 525 void ChromeClient::annotatedRegionsChanged() |
| 526 { | 526 { |
| 527 } | 527 } |
| 528 #endif | 528 #endif |
| 529 | 529 |
| 530 void ChromeClient::populateVisitedLinks() | 530 void ChromeClient::populateVisitedLinks() |
| 531 { | 531 { |
| 532 } | 532 } |
| 533 | 533 |
| 534 FloatRect ChromeClient::customHighlightRect(Node*, const AtomicString&, const Fl
oatRect&) | 534 FloatRect ChromeClient::customHighlightRect(Node*, const AtomicString&, const Fl
oatRect&) |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 602 } | 602 } |
| 603 | 603 |
| 604 void Chrome::notifyPopupOpeningObservers() const | 604 void Chrome::notifyPopupOpeningObservers() const |
| 605 { | 605 { |
| 606 const Vector<PopupOpeningObserver*> observers(m_popupOpeningObservers); | 606 const Vector<PopupOpeningObserver*> observers(m_popupOpeningObservers); |
| 607 for (size_t i = 0; i < observers.size(); ++i) | 607 for (size_t i = 0; i < observers.size(); ++i) |
| 608 observers[i]->willOpenPopup(); | 608 observers[i]->willOpenPopup(); |
| 609 } | 609 } |
| 610 | 610 |
| 611 } // namespace WebCore | 611 } // namespace WebCore |
| OLD | NEW |