Chromium Code Reviews| Index: gpu/ipc/common/android/scoped_surface_request_conduit.cc |
| diff --git a/gpu/ipc/common/android/scoped_surface_request_conduit.cc b/gpu/ipc/common/android/scoped_surface_request_conduit.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..655eb0db216caaae82a59f505033c49b6c3e5908 |
| --- /dev/null |
| +++ b/gpu/ipc/common/android/scoped_surface_request_conduit.cc |
| @@ -0,0 +1,29 @@ |
| +// 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 "gpu/ipc/common/android/scoped_surface_request_conduit.h" |
| + |
| +#include "base/logging.h" |
|
watk
2016/08/29 19:42:26
delete
tguilbert
2016/08/30 22:53:09
Needed for DCHECK.
|
| + |
| +namespace gpu { |
| +namespace { |
| + |
| +ScopedSurfaceRequestConduit* g_instance = nullptr; |
| + |
| +} // namespace |
| + |
| +// static |
| +ScopedSurfaceRequestConduit* ScopedSurfaceRequestConduit::GetInstance() { |
| + DCHECK(g_instance); |
| + return g_instance; |
| +} |
| + |
| +// static |
| +void ScopedSurfaceRequestConduit::SetInstance( |
| + ScopedSurfaceRequestConduit* instance) { |
| + DCHECK(!g_instance || !instance); |
| + g_instance = instance; |
| +} |
| + |
| +} // namespace gpu |