| Index: third_party/WebKit/Source/platform/fonts/shaping/HarfBuzzShaper.cpp
|
| diff --git a/third_party/WebKit/Source/platform/fonts/shaping/HarfBuzzShaper.cpp b/third_party/WebKit/Source/platform/fonts/shaping/HarfBuzzShaper.cpp
|
| index d9084ef1e733fe292fbd298b86a81069ce6435d2..3df61eb2936d9717bbce6e7dbf2c43a68dbaebc1 100644
|
| --- a/third_party/WebKit/Source/platform/fonts/shaping/HarfBuzzShaper.cpp
|
| +++ b/third_party/WebKit/Source/platform/fonts/shaping/HarfBuzzShaper.cpp
|
| @@ -31,6 +31,11 @@
|
|
|
| #include "platform/fonts/shaping/HarfBuzzShaper.h"
|
|
|
| +#include <hb.h>
|
| +#include <unicode/uchar.h>
|
| +#include <unicode/uscript.h>
|
| +#include <algorithm>
|
| +#include <memory>
|
| #include "platform/fonts/Font.h"
|
| #include "platform/fonts/FontDescription.h"
|
| #include "platform/fonts/FontFallbackIterator.h"
|
| @@ -46,11 +51,6 @@
|
| #include "wtf/MathExtras.h"
|
| #include "wtf/PtrUtil.h"
|
| #include "wtf/text/Unicode.h"
|
| -#include <algorithm>
|
| -#include <hb.h>
|
| -#include <memory>
|
| -#include <unicode/uchar.h>
|
| -#include <unicode/uscript.h>
|
|
|
| namespace blink {
|
| enum HolesQueueItemAction { HolesQueueNextFont, HolesQueueRange };
|
|
|