Be explicit about the vector<FrameInfo> type

This fixes a compile error in Chromium.

BUG=skia:6026

Change-Id: Idd5ad22cb52a084836de6e1427f1f047d1feab08
Reviewed-on: https://skia-review.googlesource.com/5500
Reviewed-by: Derek Sollenberger <djsollen@google.com>
Commit-Queue: Leon Scroggins <scroggo@google.com>
This commit is contained in:
Leon Scroggins III 2016-12-02 09:23:03 -05:00 committed by Skia Commit-Bot
parent 20471894ea
commit 0dd698737e

View File

@ -778,7 +778,7 @@ protected:
virtual std::vector<FrameInfo> onGetFrameInfo() {
// empty vector - this is not animated.
return {};
return std::vector<FrameInfo>{};
}
virtual int onGetRepetitionCount() {