Index: third_party/WebKit/Source/core/css/FontFace.cpp |
diff --git a/third_party/WebKit/Source/core/css/FontFace.cpp b/third_party/WebKit/Source/core/css/FontFace.cpp |
index 59fe9ddfae6c4a3826fbd743ee8d22d52c442704..01fca723b68b397540dabd669ffa03ebfa113754 100644 |
--- a/third_party/WebKit/Source/core/css/FontFace.cpp |
+++ b/third_party/WebKit/Source/core/css/FontFace.cpp |
@@ -81,10 +81,8 @@ |
return Create(context, family, source.getAsString(), descriptors); |
if (source.isArrayBuffer()) |
return Create(context, family, source.getAsArrayBuffer(), descriptors); |
- if (source.isArrayBufferView()) { |
- return Create(context, family, source.getAsArrayBufferView().View(), |
- descriptors); |
- } |
+ if (source.isArrayBufferView()) |
+ return Create(context, family, source.getAsArrayBufferView(), descriptors); |
NOTREACHED(); |
return nullptr; |
} |