Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(704)

Side by Side Diff: Source/core/rendering/RenderWidget.cpp

Issue 24921002: Make compositingState explicit (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: addressed first round of reviewer comments Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698