Use SkTArray instead of SkSTArray in movable.
authorbungeman <bungeman@google.com>
Wed, 27 May 2015 20:10:02 +0000 (13:10 -0700)
committerCommit bot <commit-bot@chromium.org>
Wed, 27 May 2015 20:10:03 +0000 (13:10 -0700)
commita9f1db7902227143f97e4e29c1eefcd690f6aced
tree90b00c8e40ed5710e0f27413ac7ba40c028874fa
parent9700206b67ef2a0aab9a8211c8a901d5123afa9f
Use SkTArray instead of SkSTArray in movable.

SkTArray is trivially movable, but SkSTArray is not, since it may
contain an internal pointer. FontFileInfo is supposed to be
trivially movable but currently isn't due to containing an SkSTArray.
Removing this particular optimization should not affect performance
much as this type is only used for parsing and does not allocate any
memory unless a variation axis is actually specified.

Review URL: https://codereview.chromium.org/1155383002
src/ports/SkFontConfigParser_android.h