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

Side by Side Diff: Source/platform/fonts/Font.cpp

Issue 618383003: Remove obsolete canExpandAroundIdeographsInComplexText (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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
« no previous file with comments | « Source/platform/fonts/Character.cpp ('k') | Source/platform/fonts/FontPlatformFeatures.h » ('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) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2003, 2006, 2010, 2011 Apple Inc. All rights reserved. 5 * Copyright (C) 2003, 2006, 2010, 2011 Apple 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 11 matching lines...) Expand all
22 */ 22 */
23 23
24 #include "config.h" 24 #include "config.h"
25 #include "platform/fonts/Font.h" 25 #include "platform/fonts/Font.h"
26 26
27 #include "platform/LayoutUnit.h" 27 #include "platform/LayoutUnit.h"
28 #include "platform/RuntimeEnabledFeatures.h" 28 #include "platform/RuntimeEnabledFeatures.h"
29 #include "platform/fonts/Character.h" 29 #include "platform/fonts/Character.h"
30 #include "platform/fonts/FontCache.h" 30 #include "platform/fonts/FontCache.h"
31 #include "platform/fonts/FontFallbackList.h" 31 #include "platform/fonts/FontFallbackList.h"
32 #include "platform/fonts/FontPlatformFeatures.h"
33 #include "platform/fonts/GlyphBuffer.h" 32 #include "platform/fonts/GlyphBuffer.h"
34 #include "platform/fonts/GlyphPageTreeNode.h" 33 #include "platform/fonts/GlyphPageTreeNode.h"
35 #include "platform/fonts/SimpleFontData.h" 34 #include "platform/fonts/SimpleFontData.h"
36 #include "platform/fonts/SimpleShaper.h" 35 #include "platform/fonts/SimpleShaper.h"
37 #include "platform/geometry/FloatRect.h" 36 #include "platform/geometry/FloatRect.h"
38 #include "platform/graphics/GraphicsContext.h" 37 #include "platform/graphics/GraphicsContext.h"
39 #include "platform/text/TextRun.h" 38 #include "platform/text/TextRun.h"
40 #include "wtf/MainThread.h" 39 #include "wtf/MainThread.h"
41 #include "wtf/StdLibExtras.h" 40 #include "wtf/StdLibExtras.h"
42 #include "wtf/unicode/CharacterNames.h" 41 #include "wtf/unicode/CharacterNames.h"
(...skipping 856 matching lines...) Expand 10 before | Expand all | Expand 10 after
899 if (delta <= 0) 898 if (delta <= 0)
900 break; 899 break;
901 } 900 }
902 } 901 }
903 } 902 }
904 903
905 return offset; 904 return offset;
906 } 905 }
907 906
908 } // namespace blink 907 } // namespace blink
OLDNEW
« no previous file with comments | « Source/platform/fonts/Character.cpp ('k') | Source/platform/fonts/FontPlatformFeatures.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698