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

Unified Diff: cc/bitmap_content_layer_updater.h

Issue 12471007: Part 8 of cc/ directory shuffles: resources (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 months 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
« no previous file with comments | « no previous file | cc/bitmap_content_layer_updater.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/bitmap_content_layer_updater.h
diff --git a/cc/bitmap_content_layer_updater.h b/cc/bitmap_content_layer_updater.h
deleted file mode 100644
index 7f24c509018a94fe6e5eaf64fae0fa043cd0b6b5..0000000000000000000000000000000000000000
--- a/cc/bitmap_content_layer_updater.h
+++ /dev/null
@@ -1,72 +0,0 @@
-// Copyright 2011 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_BITMAP_CONTENT_LAYER_UPDATER_H_
-#define CC_BITMAP_CONTENT_LAYER_UPDATER_H_
-
-#include "cc/base/cc_export.h"
-#include "cc/content_layer_updater.h"
-
-class SkCanvas;
-
-namespace cc {
-
-class LayerPainter;
-
-// This class rasterizes the content_rect into a skia bitmap canvas. It then
-// updates textures by copying from the canvas into the texture, using
-// MapSubImage if possible.
-class CC_EXPORT BitmapContentLayerUpdater : public ContentLayerUpdater {
- public:
- class Resource : public LayerUpdater::Resource {
- public:
- Resource(BitmapContentLayerUpdater* updater,
- scoped_ptr<PrioritizedResource> resource);
- virtual ~Resource();
-
- virtual void Update(ResourceUpdateQueue* queue,
- gfx::Rect source_rect,
- gfx::Vector2d dest_offset,
- bool partial_update,
- RenderingStats* stats) OVERRIDE;
-
- private:
- BitmapContentLayerUpdater* updater_;
-
- DISALLOW_COPY_AND_ASSIGN(Resource);
- };
-
- static scoped_refptr<BitmapContentLayerUpdater> Create(
- scoped_ptr<LayerPainter> painter);
-
- virtual scoped_ptr<LayerUpdater::Resource> CreateResource(
- PrioritizedResourceManager* manager) OVERRIDE;
- virtual void PrepareToUpdate(gfx::Rect content_rect,
- gfx::Size tile_size,
- float contents_width_scale,
- float contents_height_scale,
- gfx::Rect* resulting_opaque_rect,
- RenderingStats* stats) OVERRIDE;
- void UpdateTexture(ResourceUpdateQueue* queue,
- PrioritizedResource* resource,
- gfx::Rect source_rect,
- gfx::Vector2d dest_offset,
- bool partial_update);
-
- virtual void SetOpaque(bool opaque) OVERRIDE;
-
- protected:
- explicit BitmapContentLayerUpdater(scoped_ptr<LayerPainter> painter);
- virtual ~BitmapContentLayerUpdater();
-
- scoped_ptr<SkCanvas> canvas_;
- gfx::Size canvas_size_;
- bool opaque_;
-
- DISALLOW_COPY_AND_ASSIGN(BitmapContentLayerUpdater);
-};
-
-} // namespace cc
-
-#endif // CC_BITMAP_CONTENT_LAYER_UPDATER_H_
« no previous file with comments | « no previous file | cc/bitmap_content_layer_updater.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698