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

Unified Diff: blimp/client/core/compositor/blimp_compositor_frame_sink.cc

Issue 2624903006: Remove all blimp client code. (Closed)
Patch Set: Update buildbot configuration Created 3 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: blimp/client/core/compositor/blimp_compositor_frame_sink.cc
diff --git a/blimp/client/core/compositor/blimp_compositor_frame_sink.cc b/blimp/client/core/compositor/blimp_compositor_frame_sink.cc
deleted file mode 100644
index a8edcceb9c9877efef079a03c3b0cf7e34845a7a..0000000000000000000000000000000000000000
--- a/blimp/client/core/compositor/blimp_compositor_frame_sink.cc
+++ /dev/null
@@ -1,86 +0,0 @@
-// Copyright 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "blimp/client/core/compositor/blimp_compositor_frame_sink.h"
-
-#include "base/bind.h"
-#include "base/logging.h"
-#include "base/memory/ptr_util.h"
-#include "base/single_thread_task_runner.h"
-#include "base/threading/thread_checker.h"
-#include "base/threading/thread_task_runner_handle.h"
-#include "cc/output/compositor_frame.h"
-#include "cc/output/compositor_frame_sink_client.h"
-#include "cc/scheduler/begin_frame_source.h"
-#include "cc/scheduler/delay_based_time_source.h"
-
-namespace blimp {
-namespace client {
-
-BlimpCompositorFrameSink::BlimpCompositorFrameSink(
- scoped_refptr<cc::ContextProvider> compositor_context_provider,
- scoped_refptr<cc::ContextProvider> worker_context_provider,
- gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager,
- cc::SharedBitmapManager* shared_bitmap_manager,
- scoped_refptr<base::SingleThreadTaskRunner> main_task_runner,
- base::WeakPtr<BlimpCompositorFrameSinkProxy> main_thread_proxy)
- : cc::CompositorFrameSink(std::move(compositor_context_provider),
- std::move(worker_context_provider),
- gpu_memory_buffer_manager,
- shared_bitmap_manager),
- main_task_runner_(std::move(main_task_runner)),
- main_thread_proxy_(main_thread_proxy),
- weak_factory_(this) {
- DCHECK(main_task_runner_->BelongsToCurrentThread());
-}
-
-BlimpCompositorFrameSink::~BlimpCompositorFrameSink() = default;
-
-void BlimpCompositorFrameSink::ReclaimCompositorResources(
- const cc::ReturnedResourceArray& resources) {
- DCHECK(client_thread_checker_.CalledOnValidThread());
- client_->ReclaimResources(resources);
-}
-
-void BlimpCompositorFrameSink::SubmitCompositorFrameAck() {
- client_->DidReceiveCompositorFrameAck();
-}
-
-bool BlimpCompositorFrameSink::BindToClient(
- cc::CompositorFrameSinkClient* client) {
- if (!cc::CompositorFrameSink::BindToClient(client))
- return false;
-
- begin_frame_source_ = base::MakeUnique<cc::DelayBasedBeginFrameSource>(
- base::MakeUnique<cc::DelayBasedTimeSource>(
- base::ThreadTaskRunnerHandle::Get().get()));
- client->SetBeginFrameSource(begin_frame_source_.get());
-
- main_task_runner_->PostTask(
- FROM_HERE, base::Bind(&BlimpCompositorFrameSinkProxy::BindToProxyClient,
- main_thread_proxy_, weak_factory_.GetWeakPtr()));
- return true;
-}
-
-void BlimpCompositorFrameSink::DetachFromClient() {
- cc::CompositorFrameSink::DetachFromClient();
-
- main_task_runner_->PostTask(
- FROM_HERE, base::Bind(&BlimpCompositorFrameSinkProxy::UnbindProxyClient,
- main_thread_proxy_));
- weak_factory_.InvalidateWeakPtrs();
-}
-
-void BlimpCompositorFrameSink::SubmitCompositorFrame(
- cc::CompositorFrame frame) {
- DCHECK(client_thread_checker_.CalledOnValidThread());
-
- main_task_runner_->PostTask(
- FROM_HERE,
- base::Bind(&BlimpCompositorFrameSinkProxy::SubmitCompositorFrame,
- main_thread_proxy_, base::Passed(&frame)));
-}
-
-} // namespace client
-} // namespace blimp

Powered by Google App Engine
This is Rietveld 408576698