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

Side by Side Diff: chrome/browser/renderer_host/backing_store_skia.h

Issue 6246129: BackingStoreSkia: Use skia for painting in RenderWidgetHostViewViews. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: '' Created 9 years, 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/renderer_host/backing_store_skia.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2011 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.
4
5 #ifndef CHROME_BROWSER_RENDERER_HOST_BACKING_STORE_SKIA_H_
6 #define CHROME_BROWSER_RENDERER_HOST_BACKING_STORE_SKIA_H_
7 #pragma once
8
9 #include "base/scoped_ptr.h"
10 #include "chrome/browser/renderer_host/backing_store.h"
11 #include "third_party/skia/include/core/SkBitmap.h"
12
13 class SkCanvas;
14
15 namespace gfx {
16 class Point;
17 class Canvas;
18 }
19
20 // A backing store that uses skia. This is a temporary backing store used by
21 // RenderWidgetHostViewViews. In time, only GPU rendering will be used for
22 // RWHVV, and then this backing store will be removed.
23 class BackingStoreSkia : public BackingStore {
24 public:
25 BackingStoreSkia(RenderWidgetHost* widget, const gfx::Size& size);
26 virtual ~BackingStoreSkia();
27
28 void SkiaShowRect(const gfx::Point& point, gfx::Canvas* canvas);
29
30 // BackingStore implementation.
31 virtual size_t MemorySize();
32 virtual void PaintToBackingStore(
33 RenderProcessHost* process,
34 TransportDIB::Id bitmap,
35 const gfx::Rect& bitmap_rect,
36 const std::vector<gfx::Rect>& copy_rects);
37 virtual bool CopyFromBackingStore(const gfx::Rect& rect,
38 skia::PlatformCanvas* output);
39 virtual void ScrollBackingStore(int dx, int dy,
40 const gfx::Rect& clip_rect,
41 const gfx::Size& view_size);
42
43 private:
44 SkBitmap bitmap_;
45
46 scoped_ptr<SkCanvas> canvas_;
47
48 DISALLOW_COPY_AND_ASSIGN(BackingStoreSkia);
49 };
50
51 #endif // CHROME_BROWSER_RENDERER_HOST_BACKING_STORE_SKIA_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/renderer_host/backing_store_skia.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698