| Index: media/gpu/avda_surface_tracker.cc
|
| diff --git a/media/gpu/avda_surface_tracker.cc b/media/gpu/avda_surface_tracker.cc
|
| deleted file mode 100644
|
| index 8638f5ce50af7ab2d30cf659c9404c7caa137474..0000000000000000000000000000000000000000
|
| --- a/media/gpu/avda_surface_tracker.cc
|
| +++ /dev/null
|
| @@ -1,49 +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 "media/gpu/avda_surface_tracker.h"
|
| -
|
| -#include "base/callback.h"
|
| -#include "base/lazy_instance.h"
|
| -#include "base/threading/thread_checker.h"
|
| -
|
| -namespace media {
|
| -
|
| -namespace {
|
| -static base::LazyInstance<AVDASurfaceTracker> g_lazy_instance =
|
| - LAZY_INSTANCE_INITIALIZER;
|
| -}
|
| -
|
| -AVDASurfaceTracker::AVDASurfaceTracker() {}
|
| -
|
| -AVDASurfaceTracker::~AVDASurfaceTracker() {}
|
| -
|
| -void AVDASurfaceTracker::RegisterOnDestroyingSurfaceCallback(
|
| - const OnDestroyingSurfaceCallback& cb) {
|
| - DCHECK(thread_checker_.CalledOnValidThread());
|
| - callbacks_.push_back(cb);
|
| -}
|
| -
|
| -void AVDASurfaceTracker::UnregisterOnDestroyingSurfaceCallback(
|
| - const OnDestroyingSurfaceCallback& cb) {
|
| - DCHECK(thread_checker_.CalledOnValidThread());
|
| - for (auto it = callbacks_.begin(); it != callbacks_.end(); ++it) {
|
| - if (it->Equals(cb)) {
|
| - callbacks_.erase(it);
|
| - return;
|
| - }
|
| - }
|
| -}
|
| -
|
| -void AVDASurfaceTracker::NotifyDestroyingSurface(int surface_id) {
|
| - DCHECK(thread_checker_.CalledOnValidThread());
|
| - for (const auto& cb : callbacks_)
|
| - cb.Run(surface_id);
|
| -}
|
| -
|
| -AVDASurfaceTracker* AVDASurfaceTracker::GetInstance() {
|
| - return g_lazy_instance.Pointer();
|
| -}
|
| -
|
| -} // namespace media
|
|
|