am 8c1c7cfa: Cherrypick change to skia

* commit '8c1c7cfacd82a174c65fcbf839d7037e3692aee8':
  Cherrypick change to skia
diff --git a/include/core/SkPaint.h b/include/core/SkPaint.h
index 30ff663..0ec6698 100644
--- a/include/core/SkPaint.h
+++ b/include/core/SkPaint.h
@@ -861,6 +861,10 @@
                      SkPath* path) const;
 
 #ifdef SK_BUILD_FOR_ANDROID
+
+    enum FontVariant {
+            kElegant_Variant,
+    };
     const SkGlyph& getUnicharMetrics(SkUnichar);
     const SkGlyph& getGlyphMetrics(uint16_t);
     const void* findImage(const SkGlyph&);
diff --git a/include/ports/SkTypeface_android.h b/include/ports/SkTypeface_android.h
index 1a02a55..0023879 100644
--- a/include/ports/SkTypeface_android.h
+++ b/include/ports/SkTypeface_android.h
@@ -10,6 +10,8 @@
 #define SkTypeface_android_DEFINED
 
 #include "SkTypeface.h"
+#include "SkPaint.h"
+#include "../harfbuzz/src/harfbuzz-shaper.h"
 
 enum FallbackScripts {
     kArabic_FallbackScript,
@@ -30,5 +32,7 @@
 };
 
 
-SK_API SkTypeface* SkCreateTypefaceForScript(FallbackScripts script) {return NULL; }
+SK_API SkTypeface* SkCreateTypefaceForScript(HB_Script script, SkTypeface::Style style,
+        SkPaint::FontVariant fontVariant) { return NULL; }
+
 #endif