OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * Copyright (C) 2000 Dirk Mueller (mueller@kde.org) | 3 * Copyright (C) 2000 Dirk Mueller (mueller@kde.org) |
4 * Copyright (C) 2004, 2006, 2009, 2010 Apple Inc. All rights reserved. | 4 * Copyright (C) 2004, 2006, 2009, 2010 Apple Inc. All rights reserved. |
5 * Copyright (C) 2013 Google Inc. All rights reserved. | 5 * Copyright (C) 2013 Google Inc. All rights reserved. |
6 * | 6 * |
7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 | 143 |
144 m_clipRect = clipRect; | 144 m_clipRect = clipRect; |
145 | 145 |
146 RefPtr<RenderWidget> protector(this); | 146 RefPtr<RenderWidget> protector(this); |
147 RefPtr<Node> protectedNode(node()); | 147 RefPtr<Node> protectedNode(node()); |
148 m_widget->setFrameRect(newFrame); | 148 m_widget->setFrameRect(newFrame); |
149 | 149 |
150 if (clipChanged && !frameRectChanged) | 150 if (clipChanged && !frameRectChanged) |
151 m_widget->clipRectChanged(); | 151 m_widget->clipRectChanged(); |
152 | 152 |
153 if (hasLayer() && layer()->isComposited()) | 153 if (hasLayer() && layer()->compositingState() == PaintsIntoOwnBacking) |
154 layer()->backing()->updateAfterWidgetResize(); | 154 layer()->backing()->updateAfterWidgetResize(); |
155 | 155 |
156 bool boundsChanged = m_widget->frameRect().size() != newFrame.size(); | 156 bool boundsChanged = m_widget->frameRect().size() != newFrame.size(); |
157 return boundsChanged; | 157 return boundsChanged; |
158 } | 158 } |
159 | 159 |
160 bool RenderWidget::updateWidgetGeometry() | 160 bool RenderWidget::updateWidgetGeometry() |
161 { | 161 { |
162 LayoutRect contentBox = contentBoxRect(); | 162 LayoutRect contentBox = contentBoxRect(); |
163 LayoutRect absoluteContentBox(localToAbsoluteQuad(FloatQuad(contentBox)).bou
ndingBox()); | 163 LayoutRect absoluteContentBox(localToAbsoluteQuad(FloatQuad(contentBox)).bou
ndingBox()); |
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
375 CursorDirective RenderWidget::getCursor(const LayoutPoint& point, Cursor& cursor
) const | 375 CursorDirective RenderWidget::getCursor(const LayoutPoint& point, Cursor& cursor
) const |
376 { | 376 { |
377 if (widget() && widget()->isPluginView()) { | 377 if (widget() && widget()->isPluginView()) { |
378 // A plug-in is responsible for setting the cursor when the pointer is o
ver it. | 378 // A plug-in is responsible for setting the cursor when the pointer is o
ver it. |
379 return DoNotSetCursor; | 379 return DoNotSetCursor; |
380 } | 380 } |
381 return RenderReplaced::getCursor(point, cursor); | 381 return RenderReplaced::getCursor(point, cursor); |
382 } | 382 } |
383 | 383 |
384 } // namespace WebCore | 384 } // namespace WebCore |
OLD | NEW |