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

Unified Diff: content/browser/renderer_host/compositor_impl_android.h

Issue 143803004: android: Migrate old content readback to use async readback (and delegated renderer) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed comments Created 6 years, 11 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/browser/renderer_host/compositor_impl_android.h
diff --git a/content/browser/renderer_host/compositor_impl_android.h b/content/browser/renderer_host/compositor_impl_android.h
index c5dfd27ef7408e64b74daea79b49b00a090b3728..063316f4b8195a12ab7ab1c380ffbb8bc2d5fd5d 100644
--- a/content/browser/renderer_host/compositor_impl_android.h
+++ b/content/browser/renderer_host/compositor_impl_android.h
@@ -23,7 +23,6 @@ namespace cc {
class InputHandlerClient;
class Layer;
class LayerTreeHost;
-class ScopedUIResource;
}
namespace content {
@@ -59,17 +58,14 @@ class CONTENT_EXPORT CompositorImpl
void *pixels, const gfx::Rect& rect) OVERRIDE;
virtual void Composite() OVERRIDE;
virtual cc::UIResourceId GenerateUIResource(
- const cc::UIResourceBitmap& bitmap) OVERRIDE;
+ const cc::UIResourceBitmap& bitmap,
+ bool is_transient) OVERRIDE;
+ virtual cc::UIResourceId GenerateCompressedUIResource(gfx::Size& size,
+ int data_size,
+ void* data,
+ bool is_transient)
+ OVERRIDE;
virtual void DeleteUIResource(cc::UIResourceId resource_id) OVERRIDE;
- virtual GLuint GenerateTexture(gfx::JavaBitmap& bitmap) OVERRIDE;
- virtual GLuint GenerateCompressedTexture(
- gfx::Size& size, int data_size, void* data) OVERRIDE;
- virtual void DeleteTexture(GLuint texture_id) OVERRIDE;
- virtual bool CopyTextureToBitmap(GLuint texture_id,
- gfx::JavaBitmap& bitmap) OVERRIDE;
- virtual bool CopyTextureToBitmap(GLuint texture_id,
- const gfx::Rect& sub_rect,
- gfx::JavaBitmap& bitmap) OVERRIDE;
// LayerTreeHostClient implementation.
virtual void WillBeginMainFrame(int frame_id) OVERRIDE {}
@@ -98,10 +94,6 @@ class CONTENT_EXPORT CompositorImpl
virtual void OnLostResources() OVERRIDE;
private:
- GLuint BuildBasicTexture();
- GLenum GetGLFormatForBitmap(gfx::JavaBitmap& bitmap);
- GLenum GetGLTypeForBitmap(gfx::JavaBitmap& bitmap);
-
scoped_refptr<cc::Layer> root_layer_;
scoped_ptr<cc::LayerTreeHost> host_;
@@ -115,8 +107,8 @@ class CONTENT_EXPORT CompositorImpl
scoped_refptr<cc::ContextProvider> null_offscreen_context_provider_;
- typedef base::ScopedPtrHashMap<cc::UIResourceId, cc::ScopedUIResource>
- UIResourceMap;
+ typedef base::ScopedPtrHashMap<cc::UIResourceId, cc::UIResourceClient>
+ UIResourceMap;
UIResourceMap ui_resource_map_;
gfx::NativeWindow root_window_;

Powered by Google App Engine
This is Rietveld 408576698