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

Side by Side Diff: Source/core/dom/Node.cpp

Issue 952273006: Make the constructor of a LayoutRect from an IntRect explicit. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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
« no previous file with comments | « Source/core/dom/DocumentMarkerController.cpp ('k') | Source/core/frame/LocalFrame.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved.
6 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) 6 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 593 matching lines...) Expand 10 before | Expand all | Expand 10 after
604 604
605 LayoutBoxModelObject* Node::layoutBoxModelObject() const 605 LayoutBoxModelObject* Node::layoutBoxModelObject() const
606 { 606 {
607 LayoutObject* renderer = this->renderer(); 607 LayoutObject* renderer = this->renderer();
608 return renderer && renderer->isBoxModelObject() ? toLayoutBoxModelObject(ren derer) : nullptr; 608 return renderer && renderer->isBoxModelObject() ? toLayoutBoxModelObject(ren derer) : nullptr;
609 } 609 }
610 610
611 LayoutRect Node::boundingBox() const 611 LayoutRect Node::boundingBox() const
612 { 612 {
613 if (renderer()) 613 if (renderer())
614 return renderer()->absoluteBoundingBoxRect(); 614 return LayoutRect(renderer()->absoluteBoundingBoxRect());
615 return LayoutRect(); 615 return LayoutRect();
616 } 616 }
617 617
618 bool Node::hasNonEmptyBoundingBox() const 618 bool Node::hasNonEmptyBoundingBox() const
619 { 619 {
620 // Before calling absoluteRects, check for the common case where the rendere r 620 // Before calling absoluteRects, check for the common case where the rendere r
621 // is non-empty, since this is a faster check and almost always returns true . 621 // is non-empty, since this is a faster check and almost always returns true .
622 LayoutBoxModelObject* box = layoutBoxModelObject(); 622 LayoutBoxModelObject* box = layoutBoxModelObject();
623 if (!box) 623 if (!box)
624 return false; 624 return false;
(...skipping 1833 matching lines...) Expand 10 before | Expand all | Expand 10 after
2458 node->showTreeForThis(); 2458 node->showTreeForThis();
2459 } 2459 }
2460 2460
2461 void showNodePath(const blink::Node* node) 2461 void showNodePath(const blink::Node* node)
2462 { 2462 {
2463 if (node) 2463 if (node)
2464 node->showNodePathForThis(); 2464 node->showNodePathForThis();
2465 } 2465 }
2466 2466
2467 #endif 2467 #endif
OLDNEW
« no previous file with comments | « Source/core/dom/DocumentMarkerController.cpp ('k') | Source/core/frame/LocalFrame.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698