// Copyright 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef HeadsUpDisplayLayerChromium_h #define HeadsUpDisplayLayerChromium_h #include "IntSize.h" #include "base/memory/scoped_ptr.h" #include "cc/font_atlas.h" #include "cc/layer.h" namespace cc { class HeadsUpDisplayLayer : public Layer { public: static scoped_refptr create(); virtual void update(ResourceUpdateQueue&, const OcclusionTracker*, RenderingStats&) OVERRIDE; virtual bool drawsContent() const OVERRIDE; void setFontAtlas(scoped_ptr); virtual scoped_ptr createLayerImpl() OVERRIDE; virtual void pushPropertiesTo(LayerImpl*) OVERRIDE; protected: HeadsUpDisplayLayer(); private: virtual ~HeadsUpDisplayLayer(); scoped_ptr m_fontAtlas; }; } // namespace cc #endif