| Index: webkit/compositor_bindings/web_layer_tree_view_impl.cc
|
| diff --git a/webkit/compositor_bindings/web_layer_tree_view_impl.cc b/webkit/compositor_bindings/web_layer_tree_view_impl.cc
|
| index 742ad116ef5a946e7214257704ec495e5efed008..9f3e8935c9c455984f1bf628e2ace8d613463234 100644
|
| --- a/webkit/compositor_bindings/web_layer_tree_view_impl.cc
|
| +++ b/webkit/compositor_bindings/web_layer_tree_view_impl.cc
|
| @@ -193,7 +193,11 @@ void WebLayerTreeViewImpl::renderingStats(WebRenderingStats& stats) const
|
| stats.numMainThreadScrolls = ccStats.numMainThreadScrolls;
|
| }
|
|
|
| -void WebLayerTreeViewImpl::setFontAtlas(SkBitmap bitmap, WebRect asciiToWebRectTable[128], int fontHeight)
|
| +void WebLayerTreeViewImpl::setFontAtlas(SkBitmap bitmap, WebRect asciiToWebRectTable[128], int fontHeight) {
|
| + setFontAtlas(asciiToWebRectTable, bitmap, fontHeight);
|
| +}
|
| +
|
| +void WebLayerTreeViewImpl::setFontAtlas(WebRect asciiToWebRectTable[128], const SkBitmap& bitmap, int fontHeight)
|
| {
|
| gfx::Rect asciiToRectTable[128];
|
| for (int i = 0; i < 128; ++i)
|
|
|