dawn::wire: Remove unnecessary imports of ObjectBase constructor.
Bug: dawn:1451 Change-Id: I249d15f1eb5be49bc5bde08b2875f1dbb3699021 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/92663 Reviewed-by: Loko Kung <lokokung@google.com> Commit-Queue: Corentin Wallez <cwallez@chromium.org> Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: Austin Eng <enga@chromium.org>
This commit is contained in:
parent
2f5d8e33d7
commit
f5bde5fffc
|
@ -27,8 +27,6 @@ namespace dawn::wire::client {
|
|||
|
||||
class Adapter final : public ObjectBase {
|
||||
public:
|
||||
using ObjectBase::ObjectBase;
|
||||
|
||||
Adapter(Client* client, uint32_t refcount, uint32_t id);
|
||||
~Adapter();
|
||||
|
||||
|
|
|
@ -26,8 +26,6 @@ namespace dawn::wire::client {
|
|||
|
||||
class Instance final : public ObjectBase {
|
||||
public:
|
||||
using ObjectBase::ObjectBase;
|
||||
|
||||
Instance(Client* client, uint32_t refcount, uint32_t id);
|
||||
~Instance();
|
||||
|
||||
|
|
|
@ -25,8 +25,6 @@ namespace dawn::wire::client {
|
|||
|
||||
class Queue final : public ObjectBase {
|
||||
public:
|
||||
using ObjectBase::ObjectBase;
|
||||
|
||||
Queue(Client* client, uint32_t refcount, uint32_t id);
|
||||
~Queue();
|
||||
|
||||
|
|
|
@ -24,8 +24,6 @@ namespace dawn::wire::client {
|
|||
|
||||
class ShaderModule final : public ObjectBase {
|
||||
public:
|
||||
using ObjectBase::ObjectBase;
|
||||
|
||||
ShaderModule(Client* client, uint32_t refcount, uint32_t id);
|
||||
~ShaderModule();
|
||||
|
||||
|
|
Loading…
Reference in New Issue