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

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

Issue 344873002: Remove unnecessary includes of GlyphBuffer.h. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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 | « no previous file | Source/core/rendering/svg/SVGTextMetricsBuilder.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 * (C) 1999 Lars Knoll (knoll@kde.org) 2 * (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 2000 Dirk Mueller (mueller@kde.org) 3 * (C) 2000 Dirk Mueller (mueller@kde.org)
4 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved. 4 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 29 matching lines...) Expand all
40 #include "core/rendering/PaintInfo.h" 40 #include "core/rendering/PaintInfo.h"
41 #include "core/rendering/RenderBR.h" 41 #include "core/rendering/RenderBR.h"
42 #include "core/rendering/RenderBlock.h" 42 #include "core/rendering/RenderBlock.h"
43 #include "core/rendering/RenderCombineText.h" 43 #include "core/rendering/RenderCombineText.h"
44 #include "core/rendering/RenderRubyRun.h" 44 #include "core/rendering/RenderRubyRun.h"
45 #include "core/rendering/RenderRubyText.h" 45 #include "core/rendering/RenderRubyText.h"
46 #include "core/rendering/RenderTheme.h" 46 #include "core/rendering/RenderTheme.h"
47 #include "core/rendering/style/ShadowList.h" 47 #include "core/rendering/style/ShadowList.h"
48 #include "core/rendering/svg/SVGTextRunRenderingContext.h" 48 #include "core/rendering/svg/SVGTextRunRenderingContext.h"
49 #include "platform/fonts/FontCache.h" 49 #include "platform/fonts/FontCache.h"
50 #include "platform/fonts/GlyphBuffer.h"
50 #include "platform/fonts/WidthIterator.h" 51 #include "platform/fonts/WidthIterator.h"
51 #include "platform/graphics/DrawLooperBuilder.h" 52 #include "platform/graphics/DrawLooperBuilder.h"
52 #include "platform/graphics/GraphicsContextStateSaver.h" 53 #include "platform/graphics/GraphicsContextStateSaver.h"
53 #include "wtf/Vector.h" 54 #include "wtf/Vector.h"
54 #include "wtf/text/CString.h" 55 #include "wtf/text/CString.h"
55 #include "wtf/text/StringBuilder.h" 56 #include "wtf/text/StringBuilder.h"
56 57
57 #include <algorithm> 58 #include <algorithm>
58 59
59 using namespace std; 60 using namespace std;
(...skipping 1522 matching lines...) Expand 10 before | Expand all | Expand 10 after
1582 printedCharacters = fprintf(stderr, "\t%s %p", obj.renderName(), &obj); 1583 printedCharacters = fprintf(stderr, "\t%s %p", obj.renderName(), &obj);
1583 const int rendererCharacterOffset = 24; 1584 const int rendererCharacterOffset = 24;
1584 for (; printedCharacters < rendererCharacterOffset; printedCharacters++) 1585 for (; printedCharacters < rendererCharacterOffset; printedCharacters++)
1585 fputc(' ', stderr); 1586 fputc(' ', stderr);
1586 fprintf(stderr, "(%d,%d) \"%s\"\n", start(), start() + len(), value.utf8().d ata()); 1587 fprintf(stderr, "(%d,%d) \"%s\"\n", start(), start() + len(), value.utf8().d ata());
1587 } 1588 }
1588 1589
1589 #endif 1590 #endif
1590 1591
1591 } // namespace WebCore 1592 } // namespace WebCore
OLDNEW
« no previous file with comments | « no previous file | Source/core/rendering/svg/SVGTextMetricsBuilder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698