| Index: cc/surfaces/surface_factory.cc
|
| diff --git a/cc/surfaces/surface_factory.cc b/cc/surfaces/surface_factory.cc
|
| index 36a79ee9e9ad0557aa92978a661bb961dd56ed6b..8dce29b13755937b3227c873e905597a94094ce8 100644
|
| --- a/cc/surfaces/surface_factory.cc
|
| +++ b/cc/surfaces/surface_factory.cc
|
| @@ -26,10 +26,6 @@ SurfaceFactory::SurfaceFactory(const FrameSinkId& frame_sink_id,
|
| weak_factory_(this) {}
|
|
|
| SurfaceFactory::~SurfaceFactory() {
|
| - if (!surface_map_.empty()) {
|
| - LOG(ERROR) << "SurfaceFactory has " << surface_map_.size()
|
| - << " entries in map on destruction.";
|
| - }
|
| DestroyAll();
|
| }
|
|
|
| @@ -39,6 +35,7 @@ void SurfaceFactory::DestroyAll() {
|
| manager_->Destroy(std::move(pair.second));
|
| }
|
| surface_map_.clear();
|
| + current_local_frame_id_ = LocalFrameId();
|
| }
|
|
|
| void SurfaceFactory::Reset() {
|
| @@ -82,6 +79,9 @@ void SurfaceFactory::SubmitCompositorFrame(const LocalFrameId& local_frame_id,
|
| CompositorFrame frame,
|
| const DrawCallback& callback) {
|
| TRACE_EVENT0("cc", "SurfaceFactory::SubmitCompositorFrame");
|
| + DCHECK(local_frame_id.is_valid());
|
| + if (local_frame_id != current_local_frame_id_)
|
| + Create(local_frame_id);
|
| OwningSurfaceMap::iterator it = surface_map_.find(local_frame_id);
|
| DCHECK(it != surface_map_.end());
|
| DCHECK(it->second->factory().get() == this);
|
| @@ -101,6 +101,12 @@ void SurfaceFactory::SubmitCompositorFrame(const LocalFrameId& local_frame_id,
|
| TRACE_EVENT_INSTANT0("cc", "Damage not visible.", TRACE_EVENT_SCOPE_THREAD);
|
| it->second->RunDrawCallbacks();
|
| }
|
| + if (current_local_frame_id_.is_valid() &&
|
| + local_frame_id != current_local_frame_id_) {
|
| + SetPreviousFrameSurface(local_frame_id, current_local_frame_id_);
|
| + Destroy(current_local_frame_id_);
|
| + }
|
| + current_local_frame_id_ = local_frame_id;
|
| }
|
|
|
| void SurfaceFactory::RequestCopyOfSurface(
|
|
|