Index: content/browser/renderer_host/render_widget_host_view_aura.h |
diff --git a/content/browser/renderer_host/render_widget_host_view_aura.h b/content/browser/renderer_host/render_widget_host_view_aura.h |
index 1b49553e84e70e87fd8564853239cd8e4323f920..cd54053cb128e6442ac0f4dde785b9c3388e899a 100644 |
--- a/content/browser/renderer_host/render_widget_host_view_aura.h |
+++ b/content/browser/renderer_host/render_widget_host_view_aura.h |
@@ -15,6 +15,7 @@ |
#include "base/memory/ref_counted.h" |
#include "base/memory/scoped_ptr.h" |
#include "base/memory/weak_ptr.h" |
+#include "cc/resources/texture_mailbox.h" |
#include "content/browser/accessibility/browser_accessibility_manager.h" |
#include "content/browser/renderer_host/image_transport_factory.h" |
#include "content/browser/renderer_host/render_widget_host_view_base.h" |
@@ -479,7 +480,7 @@ class RenderWidgetHostViewAura |
void SwapSoftwareFrame( |
scoped_ptr<cc::SoftwareFrameData> frame_data, |
float frame_device_scale_factor); |
- void SendSoftwareFrameAck(const TransportDIB::Id& id); |
+ void SendSoftwareFrameAck(int id); |
BrowserAccessibilityManager* GetOrCreateBrowserAccessibilityManager(); |
@@ -557,12 +558,8 @@ class RenderWidgetHostViewAura |
// The current frontbuffer texture. |
scoped_refptr<ui::Texture> current_surface_; |
- // The current frontbuffer DIB. |
- scoped_ptr<TransportDIB> current_dib_; |
- |
- // The current DIB id as it was received from the renderer. Note that on |
- // some platforms (e.g. Windows) this is different from current_dib_->id(). |
- TransportDIB::Id current_dib_id_; |
+ // The current frontbuffer shared memory. |
+ cc::TextureMailbox current_frame_; |
piman
2013/05/28 20:58:57
nit: as is, it looks like it's used for the GL pat
slavi
2013/05/29 18:31:48
Done.
|
// The damage in the previously presented buffer. |
SkRegion previous_damage_; |