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

Unified Diff: content/renderer/browser_plugin/browser_plugin_backing_store.h

Issue 10830072: Browser Plugin: New Implementation (Renderer Side) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Initialize content shell resources Created 8 years, 4 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: content/renderer/browser_plugin/browser_plugin_backing_store.h
diff --git a/content/renderer/browser_plugin/browser_plugin_backing_store.h b/content/renderer/browser_plugin/browser_plugin_backing_store.h
new file mode 100644
index 0000000000000000000000000000000000000000..f3e378a566cd8f711e6c1c8fe5eafc4eb40840e5
--- /dev/null
+++ b/content/renderer/browser_plugin/browser_plugin_backing_store.h
@@ -0,0 +1,64 @@
+// Copyright (c) 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 CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_BACKING_STORE_H__
+#define CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_BACKING_STORE_H__
+
+#include <vector>
+
+#include "base/memory/scoped_ptr.h"
+#include "third_party/skia/include/core/SkBitmap.h"
+#include "ui/gfx/size.h"
+
+class SkCanvas;
+class TransportDIB;
+
+namespace gfx {
+class Canvas;
+class Point;
+class Rect;
+}
+
+namespace content {
+
+// The BrowserPluginBackingStore is a wrapper around an SkBitmap that is used
+// in the software rendering path of the browser plugin. The backing store has
+// two write operations:
+// 1. PaintToBackingStore copies pixel regions to the bitmap.
+// 2. ScrollBackingStore scrolls a region of the bitmap by dx, and dy.
+// These are called in response to changes in the guest relayed via
+// BrowserPluginMsg_UpdateRect. See BrowserPlugin::UpdateRect.
+class BrowserPluginBackingStore {
+ public:
+ BrowserPluginBackingStore(const gfx::Size& size, float scale_factor);
+ virtual ~BrowserPluginBackingStore();
+
+ void PaintToBackingStore(
+ const gfx::Rect& bitmap_rect,
+ const std::vector<gfx::Rect>& copy_rects,
+ TransportDIB* dib);
+
+ void ScrollBackingStore(int dx,
+ int dy,
+ const gfx::Rect& clip_rect,
+ const gfx::Size& view_size);
+
+ const gfx::Size& GetSize() const { return size_; }
+
+ const SkBitmap& GetBitmap() const { return bitmap_; }
+
+ float GetScaleFactor() const { return scale_factor_; }
+
+ private:
+ gfx::Size size_;
+ SkBitmap bitmap_;
+ scoped_ptr<SkCanvas> canvas_;
+ float scale_factor_;
+
+ DISALLOW_COPY_AND_ASSIGN(BrowserPluginBackingStore);
+};
+
+} // namespace content
+
+#endif // CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_BACKING_STORE_H__
« no previous file with comments | « content/renderer/browser_plugin/browser_plugin.cc ('k') | content/renderer/browser_plugin/browser_plugin_backing_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698