| Index: webkit/compositor_bindings/web_layer_tree_view_impl.h
|
| diff --git a/webkit/compositor_bindings/web_layer_tree_view_impl.h b/webkit/compositor_bindings/web_layer_tree_view_impl.h
|
| index 33c6eef4c5a2a6bdbed9746291d9fc84b0d7798e..dcd61f46db0b13976dea256b217d6e41106cfd8a 100644
|
| --- a/webkit/compositor_bindings/web_layer_tree_view_impl.h
|
| +++ b/webkit/compositor_bindings/web_layer_tree_view_impl.h
|
| @@ -10,6 +10,7 @@
|
| #include "third_party/WebKit/Source/Platform/chromium/public/WebLayerTreeView.h"
|
|
|
| namespace cc {
|
| +class FontAtlas;
|
| class LayerTreeHost;
|
| class Thread;
|
| }
|
| @@ -51,8 +52,6 @@ public:
|
| virtual void setDeferCommits(bool deferCommits) OVERRIDE;
|
| virtual void renderingStats(WebRenderingStats&) const OVERRIDE;
|
| virtual void setShowFPSCounter(bool show);
|
| - virtual void setFontAtlas(SkBitmap, WebRect asciiToRectTable[128], int fontHeight);
|
| - virtual void setFontAtlas(WebRect asciiToRectTable[128], const SkBitmap&, int fontHeight);
|
| virtual void loseCompositorContext(int numTimes) OVERRIDE;
|
|
|
| // cc::LayerTreeHostClient implementation.
|
| @@ -69,6 +68,7 @@ public:
|
| virtual void didCommitAndDrawFrame() OVERRIDE;
|
| virtual void didCompleteSwapBuffers() OVERRIDE;
|
| virtual void scheduleComposite() OVERRIDE;
|
| + virtual scoped_ptr<cc::FontAtlas> createFontAtlas();
|
|
|
| private:
|
| WebLayerTreeViewClient* m_client;
|
|
|