Add Sad Tab resources to the iOS build.
[chromium-blink-merge.git] / cc / picture_layer.h
blobd22d9c20fc15c4632eb1538176f0bd41152fdc47
1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CC_PICTURE_LAYER_H_
6 #define CC_PICTURE_LAYER_H_
8 #include "cc/layer.h"
9 #include "cc/picture_pile.h"
11 namespace cc {
13 class ContentLayerClient;
15 class CC_EXPORT PictureLayer : public Layer {
16 public:
17 static scoped_refptr<PictureLayer> create(ContentLayerClient*);
19 void clearClient() { client_ = 0; }
21 // Implement Layer interface
22 virtual bool drawsContent() const OVERRIDE;
23 virtual scoped_ptr<LayerImpl> createLayerImpl() OVERRIDE;
24 virtual void pushPropertiesTo(LayerImpl*) OVERRIDE;
26 protected:
27 explicit PictureLayer(ContentLayerClient*);
28 virtual ~PictureLayer();
30 private:
31 ContentLayerClient* client_;
32 PicturePile pile_;
35 } // namespace cc
37 #endif // CC_PICTURE_LAYER_H_