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

Side by Side Diff: Source/core/layout/svg/LayoutSVGText.cpp

Issue 1045723009: Move core/layout/style to core/style (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase. Created 5 years, 8 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) 2006 Apple Computer, Inc. 2 * Copyright (C) 2006 Apple Computer, Inc.
3 * Copyright (C) 2006 Alexander Kellett <lypanov@kde.org> 3 * Copyright (C) 2006 Alexander Kellett <lypanov@kde.org>
4 * Copyright (C) 2006 Oliver Hunt <ojh16@student.canterbury.ac.nz> 4 * Copyright (C) 2006 Oliver Hunt <ojh16@student.canterbury.ac.nz>
5 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> 5 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org>
6 * Copyright (C) 2008 Rob Buis <buis@kde.org> 6 * Copyright (C) 2008 Rob Buis <buis@kde.org>
7 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> 7 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org>
8 * Copyright (C) Research In Motion Limited 2010-2012. All rights reserved. 8 * Copyright (C) Research In Motion Limited 2010-2012. All rights reserved.
9 * Copyright (C) 2012 Google Inc. 9 * Copyright (C) 2012 Google Inc.
10 * 10 *
(...skipping 17 matching lines...) Expand all
28 28
29 #include "core/layout/svg/LayoutSVGText.h" 29 #include "core/layout/svg/LayoutSVGText.h"
30 30
31 #include "core/editing/PositionWithAffinity.h" 31 #include "core/editing/PositionWithAffinity.h"
32 #include "core/layout/HitTestRequest.h" 32 #include "core/layout/HitTestRequest.h"
33 #include "core/layout/HitTestResult.h" 33 #include "core/layout/HitTestResult.h"
34 #include "core/layout/LayoutAnalyzer.h" 34 #include "core/layout/LayoutAnalyzer.h"
35 #include "core/layout/LayoutState.h" 35 #include "core/layout/LayoutState.h"
36 #include "core/layout/PaintInfo.h" 36 #include "core/layout/PaintInfo.h"
37 #include "core/layout/PointerEventsHitRules.h" 37 #include "core/layout/PointerEventsHitRules.h"
38 #include "core/layout/style/ShadowList.h" 38 #include "core/style/ShadowList.h"
39 #include "core/layout/svg/LayoutSVGInline.h" 39 #include "core/layout/svg/LayoutSVGInline.h"
40 #include "core/layout/svg/LayoutSVGInlineText.h" 40 #include "core/layout/svg/LayoutSVGInlineText.h"
41 #include "core/layout/svg/LayoutSVGRoot.h" 41 #include "core/layout/svg/LayoutSVGRoot.h"
42 #include "core/layout/svg/SVGLayoutSupport.h" 42 #include "core/layout/svg/SVGLayoutSupport.h"
43 #include "core/layout/svg/SVGResourcesCache.h" 43 #include "core/layout/svg/SVGResourcesCache.h"
44 #include "core/layout/svg/line/SVGRootInlineBox.h" 44 #include "core/layout/svg/line/SVGRootInlineBox.h"
45 #include "core/paint/SVGTextPainter.h" 45 #include "core/paint/SVGTextPainter.h"
46 #include "core/svg/SVGLengthList.h" 46 #include "core/svg/SVGLengthList.h"
47 #include "core/svg/SVGTextElement.h" 47 #include "core/svg/SVGTextElement.h"
48 #include "core/svg/SVGTransformList.h" 48 #include "core/svg/SVGTransformList.h"
(...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after
503 SVGResourcesCache::clientWillBeRemovedFromTree(child); 503 SVGResourcesCache::clientWillBeRemovedFromTree(child);
504 504
505 Vector<SVGTextLayoutAttributes*, 2> affectedAttributes; 505 Vector<SVGTextLayoutAttributes*, 2> affectedAttributes;
506 FontCachePurgePreventer fontCachePurgePreventer; 506 FontCachePurgePreventer fontCachePurgePreventer;
507 subtreeChildWillBeRemoved(child, affectedAttributes); 507 subtreeChildWillBeRemoved(child, affectedAttributes);
508 LayoutSVGBlock::removeChild(child); 508 LayoutSVGBlock::removeChild(child);
509 subtreeChildWasRemoved(affectedAttributes); 509 subtreeChildWasRemoved(affectedAttributes);
510 } 510 }
511 511
512 } 512 }
OLDNEW
« no previous file with comments | « Source/core/layout/svg/LayoutSVGResourcePaintServer.cpp ('k') | Source/core/layout/svg/SVGPathData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698