Index: cc/heads_up_display_layer.h |
diff --git a/cc/heads_up_display_layer.h b/cc/heads_up_display_layer.h |
deleted file mode 100644 |
index 63cbf798523443f6584883fb9d3f0fa85145113c..0000000000000000000000000000000000000000 |
--- a/cc/heads_up_display_layer.h |
+++ /dev/null |
@@ -1,35 +0,0 @@ |
-// 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 CC_HEADS_UP_DISPLAY_LAYER_H_ |
-#define CC_HEADS_UP_DISPLAY_LAYER_H_ |
- |
-#include "base/memory/scoped_ptr.h" |
-#include "cc/base/cc_export.h" |
-#include "cc/layer.h" |
- |
-namespace cc { |
- |
-class CC_EXPORT HeadsUpDisplayLayer : public Layer { |
- public: |
- static scoped_refptr<HeadsUpDisplayLayer> Create(); |
- |
- virtual void Update(ResourceUpdateQueue* queue, |
- const OcclusionTracker* tracker, |
- RenderingStats* stats) OVERRIDE; |
- virtual bool DrawsContent() const OVERRIDE; |
- |
- virtual scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl) |
- OVERRIDE; |
- |
- protected: |
- HeadsUpDisplayLayer(); |
- |
- private: |
- virtual ~HeadsUpDisplayLayer(); |
-}; |
- |
-} // namespace cc |
- |
-#endif // CC_HEADS_UP_DISPLAY_LAYER_H_ |