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

Unified Diff: content/browser/compositor/gpu_process_transport_factory.cc

Issue 2565783002: Moves ownership of the cc::Display's BeginFrameSource out of Display. (Closed)
Patch Set: Created 4 years 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/compositor/gpu_process_transport_factory.cc
diff --git a/content/browser/compositor/gpu_process_transport_factory.cc b/content/browser/compositor/gpu_process_transport_factory.cc
index 23c4cbd818916f0f8586f6be37f7d3157ba92522..09dd6acac62bf70db86d8d090e7e933bbd84453c 100644
--- a/content/browser/compositor/gpu_process_transport_factory.cc
+++ b/content/browser/compositor/gpu_process_transport_factory.cc
@@ -164,7 +164,7 @@ namespace content {
struct GpuProcessTransportFactory::PerCompositorData {
gpu::SurfaceHandle surface_handle = gpu::kNullSurfaceHandle;
BrowserCompositorOutputSurface* display_output_surface = nullptr;
- cc::SyntheticBeginFrameSource* begin_frame_source = nullptr;
+ std::unique_ptr<cc::SyntheticBeginFrameSource> begin_frame_source;
ReflectorImpl* reflector = nullptr;
std::unique_ptr<cc::Display> display;
bool output_is_secure = false;
@@ -283,10 +283,10 @@ void GpuProcessTransportFactory::CreateCompositorFrameSink(
if (!data) {
data = CreatePerCompositorData(compositor.get());
} else {
- // TODO(danakj): We can destroy the |data->display| here when the compositor
- // destroys its CompositorFrameSink before calling back here.
+ // TODO(danakj): We can destroy the |data->display| and
+ // |data->begin_frame_source| here when the compositor destroys its
+ // CompositorFrameSink before calling back here.
data->display_output_surface = nullptr;
- data->begin_frame_source = nullptr;
}
#if defined(OS_WIN)
@@ -537,7 +537,6 @@ void GpuProcessTransportFactory::EstablishedGpuChannel(
}
data->display_output_surface = display_output_surface.get();
- data->begin_frame_source = begin_frame_source.get();
if (data->reflector)
data->reflector->OnSourceSurfaceReady(data->display_output_surface);
@@ -547,16 +546,17 @@ void GpuProcessTransportFactory::EstablishedGpuChannel(
#endif
std::unique_ptr<cc::DisplayScheduler> scheduler(new cc::DisplayScheduler(
- begin_frame_source.get(), compositor->task_runner().get(),
+ compositor->task_runner().get(),
display_output_surface->capabilities().max_frames_pending));
// The Display owns and uses the |display_output_surface| created above.
data->display = base::MakeUnique<cc::Display>(
HostSharedBitmapManager::current(), GetGpuMemoryBufferManager(),
compositor->GetRendererSettings(), compositor->frame_sink_id(),
- std::move(begin_frame_source), std::move(display_output_surface),
+ begin_frame_source.get(), std::move(display_output_surface),
std::move(scheduler), base::MakeUnique<cc::TextureMailboxDeleter>(
compositor->task_runner().get()));
+ data->begin_frame_source = std::move(begin_frame_source);
// The |delegated_output_surface| is given back to the compositor, it
// delegates to the Display as its root surface. Importantly, it shares the

Powered by Google App Engine
This is Rietveld 408576698