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

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: ready for review 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 && !boundsChanged) 150 if (clipChanged && !boundsChanged)
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 return boundsChanged; 156 return boundsChanged;
157 } 157 }
158 158
159 bool RenderWidget::updateWidgetGeometry() 159 bool RenderWidget::updateWidgetGeometry()
160 { 160 {
161 LayoutRect contentBox = contentBoxRect(); 161 LayoutRect contentBox = contentBoxRect();
162 LayoutRect absoluteContentBox(localToAbsoluteQuad(FloatQuad(contentBox)).bou ndingBox()); 162 LayoutRect absoluteContentBox(localToAbsoluteQuad(FloatQuad(contentBox)).bou ndingBox());
163 if (m_widget->isFrameView()) { 163 if (m_widget->isFrameView()) {
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 CursorDirective RenderWidget::getCursor(const LayoutPoint& point, Cursor& cursor ) const 374 CursorDirective RenderWidget::getCursor(const LayoutPoint& point, Cursor& cursor ) const
375 { 375 {
376 if (widget() && widget()->isPluginView()) { 376 if (widget() && widget()->isPluginView()) {
377 // A plug-in is responsible for setting the cursor when the pointer is o ver it. 377 // A plug-in is responsible for setting the cursor when the pointer is o ver it.
378 return DoNotSetCursor; 378 return DoNotSetCursor;
379 } 379 }
380 return RenderReplaced::getCursor(point, cursor); 380 return RenderReplaced::getCursor(point, cursor);
381 } 381 }
382 382
383 } // namespace WebCore 383 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698