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

Unified Diff: content/browser/renderer_host/render_widget_host_impl.cc

Issue 9980016: Delete background tab IOSurfaces on Mac. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comments and piman feedback Created 8 years, 8 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/render_widget_host_impl.cc
diff --git a/content/browser/renderer_host/render_widget_host_impl.cc b/content/browser/renderer_host/render_widget_host_impl.cc
index d4779ae3cfd7a9dea43416593bc876ec2beaf7ef..9fbc9ca60a865e6a8d714fe216ec63a384af7e92 100644
--- a/content/browser/renderer_host/render_widget_host_impl.cc
+++ b/content/browser/renderer_host/render_widget_host_impl.cc
@@ -65,7 +65,7 @@ namespace {
// PaintRect message, when our backing-store is invalid, before giving up and
// returning a null or incorrectly sized backing-store from GetBackingStore.
// This timeout impacts the "choppiness" of our window resize perf.
-static const int kPaintMsgTimeoutMS = 40;
+static const int kPaintMsgTimeoutMS = 50;
// How long to wait before we consider a renderer hung.
static const int kHungRendererDelayMs = 20000;
@@ -257,6 +257,8 @@ bool RenderWidgetHostImpl::OnMessageReceived(const IPC::Message &msg) {
IPC_MESSAGE_HANDLER(ViewHostMsg_RequestMove, OnMsgRequestMove)
IPC_MESSAGE_HANDLER(ViewHostMsg_SetTooltipText, OnMsgSetTooltipText)
IPC_MESSAGE_HANDLER(ViewHostMsg_PaintAtSize_ACK, OnMsgPaintAtSizeAck)
+ IPC_MESSAGE_HANDLER(ViewHostMsg_CompositorSurfaceBuffersSwapped,
+ OnCompositorSurfaceBuffersSwapped)
IPC_MESSAGE_HANDLER(ViewHostMsg_UpdateRect, OnMsgUpdateRect)
IPC_MESSAGE_HANDLER(ViewHostMsg_UpdateIsDelayed, OnMsgUpdateIsDelayed)
IPC_MESSAGE_HANDLER(ViewHostMsg_HandleInputEvent_ACK, OnMsgInputEventAck)
@@ -575,9 +577,18 @@ void RenderWidgetHostImpl::PaintAtSize(TransportDIB::Handle dib_handle,
}
BackingStore* RenderWidgetHostImpl::GetBackingStore(bool force_create) {
+ if (!view_)
+ return NULL;
+
+ // Get the desired size from the current view bounds.
+ gfx::Rect view_rect = view_->GetViewBounds();
+ if (view_rect.IsEmpty())
+ return NULL;
+ gfx::Size view_size = view_rect.size();
+
TRACE_EVENT2("renderer_host", "RenderWidgetHostImpl::GetBackingStore",
- "width", base::IntToString(current_size_.width()),
- "height", base::IntToString(current_size_.height()));
+ "width", base::IntToString(view_size.width()),
+ "height", base::IntToString(view_size.height()));
// We should not be asked to paint while we are hidden. If we are hidden,
// then it means that our consumer failed to call WasRestored. If we're not
@@ -591,9 +602,15 @@ BackingStore* RenderWidgetHostImpl::GetBackingStore(bool force_create) {
DCHECK(!in_get_backing_store_) << "GetBackingStore called recursively!";
AutoReset<bool> auto_reset_in_get_backing_store(&in_get_backing_store_, true);
+ // If there's an accelerated surface, return NULL now. The caller will need
+ // to confirm whether there is an accelerated frame after GetBackingStore
+ // returns.
+ if (view_->HasAcceleratedSurface(view_size))
+ return NULL;
+
// We might have a cached backing store that we can reuse!
BackingStore* backing_store =
- BackingStoreManager::GetBackingStore(this, current_size_);
+ BackingStoreManager::GetBackingStore(this, view_size);
if (!force_create)
return backing_store;
@@ -603,7 +620,7 @@ BackingStore* RenderWidgetHostImpl::GetBackingStore(bool force_create) {
!view_being_painted_) {
repaint_start_time_ = TimeTicks::Now();
repaint_ack_pending_ = true;
- Send(new ViewMsg_Repaint(routing_id_, current_size_));
+ Send(new ViewMsg_Repaint(routing_id_, view_size));
}
// When we have asked the RenderWidget to resize, and we are still waiting on
@@ -612,12 +629,37 @@ BackingStore* RenderWidgetHostImpl::GetBackingStore(bool force_create) {
if (resize_ack_pending_ || !backing_store) {
IPC::Message msg;
TimeDelta max_delay = TimeDelta::FromMilliseconds(kPaintMsgTimeoutMS);
- if (process_->WaitForUpdateMsg(routing_id_, max_delay, &msg)) {
- OnMessageReceived(msg);
- backing_store = BackingStoreManager::GetBackingStore(this, current_size_);
- }
+ TimeTicks end_time = TimeTicks::Now() + max_delay;
+ do {
+ TRACE_EVENT0("renderer_host", "GetBackingStore::WaitForUpdate");
+
+ if (process_->WaitForUpdateMsg(routing_id_, max_delay, &msg)) {
+ OnMessageReceived(msg);
+ // Break now if we got a backing store or accelerated surface of the
+ // correct size.
+ if (view_->HasAcceleratedSurface(view_size))
darin (slow to review) 2012/04/20 17:11:27 nit: this snippet of code can also be found above.
jbates 2012/04/20 23:01:04 Done.
+ return NULL;
+ backing_store = BackingStoreManager::GetBackingStore(this, view_size);
+ if (backing_store)
+ return backing_store;
+ } else {
+ TRACE_EVENT0("renderer_host", "GetBackingStore::Timeout");
+ break;
+ }
+
+ // Loop if we still have time left and haven't gotten a properly sized
+ // frame yet. This is necessary to support the GPU path which typically
+ // has multiple frames pipelined -- we may need to skip one or two
+ // UpdateRects to get to the latest.
+ max_delay = end_time - TimeTicks::Now();
+ } while (max_delay > TimeDelta::FromSeconds(0));
}
+ // If we have still failed to get a backing store of view_size, fall back on
+ // current_size_ to attempt to avoid a white flash while resizing slow pages.
+ if (!backing_store)
+ backing_store = BackingStoreManager::GetBackingStore(this, current_size_);
+
return backing_store;
}
@@ -1143,6 +1185,32 @@ void RenderWidgetHostImpl::OnMsgPaintAtSizeAck(int tag, const gfx::Size& size) {
Details<std::pair<int, gfx::Size> >(&details));
}
+void RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwapped(
+ int32 surface_id,
+ uint64 surface_handle,
+ int32 route_id,
+ int32 gpu_process_host_id) {
+ TRACE_EVENT0("renderer_host",
+ "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwapped");
+ if (!view_) {
+ RenderWidgetHostImpl::AcknowledgeSwapBuffers(route_id,
+ gpu_process_host_id);
+ return;
+ }
+ GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params gpu_params;
+ gpu_params.surface_id = surface_id;
+ gpu_params.surface_handle = surface_handle;
+ gpu_params.route_id = route_id;
+#if defined(OS_MACOSX)
+ // Compositor window is always gfx::kNullPluginWindow.
+ // TODO(jbates) http://crbug.com/105344 This will be removed when there are no
+ // plugin windows.
+ gpu_params.window = gfx::kNullPluginWindow;
+#endif
+ view_->AcceleratedSurfaceBuffersSwapped(gpu_params,
+ gpu_process_host_id);
+}
+
void RenderWidgetHostImpl::OnMsgUpdateRect(
const ViewHostMsg_UpdateRect_Params& params) {
TRACE_EVENT0("renderer_host", "RenderWidgetHostImpl::OnMsgUpdateRect");
@@ -1175,44 +1243,44 @@ void RenderWidgetHostImpl::OnMsgUpdateRect(
DCHECK(!params.view_size.IsEmpty());
bool was_async = false;
- if (!is_accelerated_compositing_active_) {
jbates 2012/04/20 01:14:04 FYI, this is just a diff failure, almost all this
+
+ // If this is a GPU UpdateRect, params.bitmap is invalid and dib will be NULL.
+ TransportDIB* dib = process_->GetTransportDIB(params.bitmap);
+
+ // If gpu process does painting, scroll_rect and copy_rects are always empty
+ // and backing store is never used.
+ if (dib) {
DCHECK(!params.bitmap_rect.IsEmpty());
const size_t size = params.bitmap_rect.height() *
params.bitmap_rect.width() * 4;
- TransportDIB* dib = process_->GetTransportDIB(params.bitmap);
-
- // If gpu process does painting, scroll_rect and copy_rects are always empty
- // and backing store is never used.
- if (dib) {
- if (dib->size() < size) {
- DLOG(WARNING) << "Transport DIB too small for given rectangle";
- RecordAction(UserMetricsAction("BadMessageTerminate_RWH1"));
- GetProcess()->ReceivedBadMessage();
- } else {
- UNSHIPPED_TRACE_EVENT_INSTANT2("test_latency", "UpdateRect",
- "x+y", params.bitmap_rect.x() + params.bitmap_rect.y(),
- "color", 0xffffff & *static_cast<uint32*>(dib->memory()));
- UNSHIPPED_TRACE_EVENT_INSTANT1("test_latency", "UpdateRectWidth",
- "width", params.bitmap_rect.width());
-
- // Scroll the backing store.
- if (!params.scroll_rect.IsEmpty()) {
- ScrollBackingStoreRect(params.dx, params.dy,
- params.scroll_rect,
- params.view_size);
- }
-
- // Paint the backing store. This will update it with the
- // renderer-supplied bits. The view will read out of the backing store
- // later to actually draw to the screen.
- was_async = PaintBackingStoreRect(
- params.bitmap,
- params.bitmap_rect,
- params.copy_rects,
- params.view_size,
- base::Bind(&RenderWidgetHostImpl::DidUpdateBackingStore,
- weak_factory_.GetWeakPtr(), params, paint_start));
+ if (dib->size() < size) {
+ DLOG(WARNING) << "Transport DIB too small for given rectangle";
+ RecordAction(UserMetricsAction("BadMessageTerminate_RWH1"));
+ GetProcess()->ReceivedBadMessage();
+ } else {
+ UNSHIPPED_TRACE_EVENT_INSTANT2("test_latency", "UpdateRect",
+ "x+y", params.bitmap_rect.x() + params.bitmap_rect.y(),
+ "color", 0xffffff & *static_cast<uint32*>(dib->memory()));
+ UNSHIPPED_TRACE_EVENT_INSTANT1("test_latency", "UpdateRectWidth",
+ "width", params.bitmap_rect.width());
+
+ // Scroll the backing store.
+ if (!params.scroll_rect.IsEmpty()) {
+ ScrollBackingStoreRect(params.dx, params.dy,
+ params.scroll_rect,
+ params.view_size);
}
+
+ // Paint the backing store. This will update it with the
+ // renderer-supplied bits. The view will read out of the backing store
+ // later to actually draw to the screen.
+ was_async = PaintBackingStoreRect(
+ params.bitmap,
+ params.bitmap_rect,
+ params.copy_rects,
+ params.view_size,
+ base::Bind(&RenderWidgetHostImpl::DidUpdateBackingStore,
+ weak_factory_.GetWeakPtr(), params, paint_start));
}
}

Powered by Google App Engine
This is Rietveld 408576698