Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1195)

Unified Diff: cc/nine_patch_layer.h

Issue 11304020: cc: Nine patch layer. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Add unit tests and address code review Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: cc/nine_patch_layer.h
diff --git a/cc/nine_patch_layer.h b/cc/nine_patch_layer.h
new file mode 100644
index 0000000000000000000000000000000000000000..c6aa2eb0ca9f2aa049eb0046888ef9d211d8af30
--- /dev/null
+++ b/cc/nine_patch_layer.h
@@ -0,0 +1,48 @@
+// 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 NinePatchLayer_h
+#define NinePatchLayer_h
+
+#include "base/memory/scoped_ptr.h"
+#include "cc/layer.h"
+#include "cc/image_layer_updater.h"
+#include "ui/gfx/rect.h"
+#include "third_party/skia/include/core/SkBitmap.h"
+
+namespace cc {
+
+class ResourceUpdateQueue;
+
+class NinePatchLayer : public Layer {
+public:
+ static scoped_refptr<NinePatchLayer> create();
+
+ virtual bool drawsContent() const OVERRIDE;
+ virtual void setTexturePriorities(const PriorityCalculator&) OVERRIDE;
+ virtual void update(ResourceUpdateQueue&, const OcclusionTracker*, RenderingStats&) OVERRIDE;
+ virtual void pushPropertiesTo(LayerImpl*) OVERRIDE;
+
+ void setBitmap(const SkBitmap& bitmap, const gfx::Rect& aperture);
+
+private:
+ NinePatchLayer();
+ virtual ~NinePatchLayer();
+ virtual scoped_ptr<LayerImpl> createLayerImpl() OVERRIDE;
+
+ void createUpdaterIfNeeded();
+
+ scoped_refptr<ImageLayerUpdater> m_updater;
+ scoped_ptr<LayerUpdater::Resource> m_resource;
+
+ SkBitmap m_bitmap;
+ bool m_bitmapDirty;
+
+ // The transparent center region that shows the parent layer's contents in image space.
+ gfx::Rect m_imageAperture;
+};
+
+}
+
+#endif
« no previous file with comments | « cc/image_layer_updater.cc ('k') | cc/nine_patch_layer.cc » ('j') | cc/nine_patch_layer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698