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

Unified Diff: cc/resources/bitmap_skpicture_content_layer_updater.h

Issue 1057283003: Remove parts of //cc we aren't using (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 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
Index: cc/resources/bitmap_skpicture_content_layer_updater.h
diff --git a/cc/resources/bitmap_skpicture_content_layer_updater.h b/cc/resources/bitmap_skpicture_content_layer_updater.h
deleted file mode 100644
index ba22b2e5908d97200c7a03512830bc8b73440361..0000000000000000000000000000000000000000
--- a/cc/resources/bitmap_skpicture_content_layer_updater.h
+++ /dev/null
@@ -1,57 +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_RESOURCES_BITMAP_SKPICTURE_CONTENT_LAYER_UPDATER_H_
-#define CC_RESOURCES_BITMAP_SKPICTURE_CONTENT_LAYER_UPDATER_H_
-
-#include "cc/resources/skpicture_content_layer_updater.h"
-#include "third_party/skia/include/core/SkBitmap.h"
-
-namespace cc {
-
-// This class records the content_rect into an SkPicture, then software
-// rasterizes the SkPicture into bitmaps for each tile. This implements
-// LayerTreeSettingSettings::per_tile_painting_enabled.
-class BitmapSkPictureContentLayerUpdater : public SkPictureContentLayerUpdater {
- public:
- class Resource : public ContentLayerUpdater::Resource {
- public:
- Resource(BitmapSkPictureContentLayerUpdater* updater,
- scoped_ptr<PrioritizedResource> texture);
-
- void Update(ResourceUpdateQueue* queue,
- const gfx::Rect& source_rect,
- const gfx::Vector2d& dest_offset,
- bool partial_update) override;
-
- private:
- SkBitmap bitmap_;
- BitmapSkPictureContentLayerUpdater* updater_;
-
- DISALLOW_COPY_AND_ASSIGN(Resource);
- };
-
- static scoped_refptr<BitmapSkPictureContentLayerUpdater> Create(
- scoped_ptr<LayerPainter> painter,
- RenderingStatsInstrumentation* stats_instrumentation,
- int layer_id);
-
- scoped_ptr<LayerUpdater::Resource> CreateResource(
- PrioritizedResourceManager* manager) override;
- void PaintContentsRect(SkCanvas* canvas,
- const gfx::Rect& source_rect);
-
- private:
- BitmapSkPictureContentLayerUpdater(
- scoped_ptr<LayerPainter> painter,
- RenderingStatsInstrumentation* stats_instrumentation,
- int layer_id);
- ~BitmapSkPictureContentLayerUpdater() override;
-
- DISALLOW_COPY_AND_ASSIGN(BitmapSkPictureContentLayerUpdater);
-};
-
-} // namespace cc
-
-#endif // CC_RESOURCES_BITMAP_SKPICTURE_CONTENT_LAYER_UPDATER_H_
« no previous file with comments | « cc/resources/bitmap_content_layer_updater.cc ('k') | cc/resources/bitmap_skpicture_content_layer_updater.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698