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

Side by Side Diff: third_party/WebKit/Source/core/svg/SVGSVGElement.cpp

Issue 2614883007: Change computed style enums to be prefixed with 'k'. (Closed)
Patch Set: Rebase on ToT. Created 3 years, 11 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2010 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2010 Rob Buis <buis@kde.org>
4 * Copyright (C) 2007 Apple Inc. All rights reserved. 4 * Copyright (C) 2007 Apple Inc. All rights reserved.
5 * Copyright (C) 2014 Google, Inc. 5 * Copyright (C) 2014 Google, Inc.
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 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 layoutObject->isSVGImage() || isSVGUseElement(*layoutObject->node()); 314 layoutObject->isSVGImage() || isSVGUseElement(*layoutObject->node());
315 } 315 }
316 316
317 bool SVGSVGElement::checkIntersectionOrEnclosure( 317 bool SVGSVGElement::checkIntersectionOrEnclosure(
318 const SVGElement& element, 318 const SVGElement& element,
319 const FloatRect& rect, 319 const FloatRect& rect,
320 GeometryMatchingMode mode) const { 320 GeometryMatchingMode mode) const {
321 LayoutObject* layoutObject = element.layoutObject(); 321 LayoutObject* layoutObject = element.layoutObject();
322 ASSERT(!layoutObject || layoutObject->style()); 322 ASSERT(!layoutObject || layoutObject->style());
323 if (!layoutObject || 323 if (!layoutObject ||
324 layoutObject->style()->pointerEvents() == EPointerEvents::None) 324 layoutObject->style()->pointerEvents() == EPointerEvents::kNone)
325 return false; 325 return false;
326 326
327 if (!isIntersectionOrEnclosureTarget(layoutObject)) 327 if (!isIntersectionOrEnclosureTarget(layoutObject))
328 return false; 328 return false;
329 329
330 AffineTransform ctm = toSVGGraphicsElement(element).computeCTM( 330 AffineTransform ctm = toSVGGraphicsElement(element).computeCTM(
331 AncestorScope, DisallowStyleUpdate, this); 331 AncestorScope, DisallowStyleUpdate, this);
332 FloatRect mappedRepaintRect = 332 FloatRect mappedRepaintRect =
333 ctm.mapRect(layoutObject->visualRectInLocalSVGCoordinates()); 333 ctm.mapRect(layoutObject->visualRectInLocalSVGCoordinates());
334 334
(...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after
760 visitor->trace(m_width); 760 visitor->trace(m_width);
761 visitor->trace(m_height); 761 visitor->trace(m_height);
762 visitor->trace(m_translation); 762 visitor->trace(m_translation);
763 visitor->trace(m_timeContainer); 763 visitor->trace(m_timeContainer);
764 visitor->trace(m_viewSpec); 764 visitor->trace(m_viewSpec);
765 SVGGraphicsElement::trace(visitor); 765 SVGGraphicsElement::trace(visitor);
766 SVGFitToViewBox::trace(visitor); 766 SVGFitToViewBox::trace(visitor);
767 } 767 }
768 768
769 } // namespace blink 769 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/style/ComputedStyle.cpp ('k') | third_party/WebKit/Source/core/testing/Internals.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698