| Index: ppapi/shared_impl/command_buffer_id_pair.cc
|
| diff --git a/ppapi/shared_impl/command_buffer_id_pair.cc b/ppapi/shared_impl/command_buffer_id_pair.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..26255801f8278eb3db8effc17e2dfb6098bed5bb
|
| --- /dev/null
|
| +++ b/ppapi/shared_impl/command_buffer_id_pair.cc
|
| @@ -0,0 +1,16 @@
|
| +// Copyright 2015 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 "ppapi/shared_impl/command_buffer_id_pair.h"
|
| +
|
| +namespace ppapi {
|
| +
|
| +CommandBufferIDPair::CommandBufferIDPair()
|
| + : namespace_id(gpu::kCommandBufferNamespace_Invalid),
|
| + command_buffer_id(0) {
|
| +}
|
| +
|
| +CommandBufferIDPair::~CommandBufferIDPair() {}
|
| +
|
| +} // namespace ppapi
|
|
|