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

Side by Side Diff: Source/core/platform/graphics/harfbuzz/HarfBuzzShaper.cpp

Issue 64643009: Remove duplicated headers from core/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 7 years 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) 2012 Google Inc. All rights reserved. 2 * Copyright (c) 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2013 BlackBerry Limited. All rights reserved. 3 * Copyright (C) 2013 BlackBerry Limited. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 18 matching lines...) Expand all
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 */ 30 */
31 31
32 #include "config.h" 32 #include "config.h"
33 #include "core/platform/graphics/harfbuzz/HarfBuzzShaper.h" 33 #include "core/platform/graphics/harfbuzz/HarfBuzzShaper.h"
34 34
35 #include "RuntimeEnabledFeatures.h" 35 #include "RuntimeEnabledFeatures.h"
36 #include "core/platform/graphics/Font.h" 36 #include "core/platform/graphics/Font.h"
37 #include "core/platform/graphics/harfbuzz/HarfBuzzFace.h" 37 #include "core/platform/graphics/harfbuzz/HarfBuzzFace.h"
38 #include "hb-icu.h" 38 #include "hb-icu.h"
39 #include "platform/graphics/TextRun.h"
40 #include "platform/text/SurrogatePairAwareTextIterator.h" 39 #include "platform/text/SurrogatePairAwareTextIterator.h"
41 #include "wtf/MathExtras.h" 40 #include "wtf/MathExtras.h"
42 #include "wtf/unicode/Unicode.h" 41 #include "wtf/unicode/Unicode.h"
43 #include "wtf/Vector.h"
44 #include <unicode/normlzr.h> 42 #include <unicode/normlzr.h>
45 #include <unicode/uchar.h> 43 #include <unicode/uchar.h>
46 44
47 #include <list> 45 #include <list>
48 #include <map> 46 #include <map>
49 #include <string> 47 #include <string>
50 48
51 namespace WebCore { 49 namespace WebCore {
52 50
53 template<typename T> 51 template<typename T>
(...skipping 834 matching lines...) Expand 10 before | Expand all | Expand 10 after
888 if (!foundToX) 886 if (!foundToX)
889 toX = m_run.rtl() ? 0 : m_totalWidth; 887 toX = m_run.rtl() ? 0 : m_totalWidth;
890 888
891 // Using floorf() and roundf() as the same as mac port. 889 // Using floorf() and roundf() as the same as mac port.
892 if (fromX < toX) 890 if (fromX < toX)
893 return FloatRect(floorf(point.x() + fromX), point.y(), roundf(toX - from X), height); 891 return FloatRect(floorf(point.x() + fromX), point.y(), roundf(toX - from X), height);
894 return FloatRect(floorf(point.x() + toX), point.y(), roundf(fromX - toX), he ight); 892 return FloatRect(floorf(point.x() + toX), point.y(), roundf(fromX - toX), he ight);
895 } 893 }
896 894
897 } // namespace WebCore 895 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698