Remove stray reference to GetDefaultQueue

Bug: dawn:22
Change-Id: Ia5c1f552317d9c35a9c09fe4e0684593cee9cacf
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/62940
Auto-Submit: Corentin Wallez <cwallez@chromium.org>
Reviewed-by: Jiawei Shao <jiawei.shao@intel.com>
Commit-Queue: Corentin Wallez <cwallez@chromium.org>
diff --git a/dawn_wire.json b/dawn_wire.json
index 406ef4e..1e70145 100644
--- a/dawn_wire.json
+++ b/dawn_wire.json
@@ -167,7 +167,6 @@
             "BufferUnmap",
             "DeviceCreateComputePipeline",
             "DeviceCreateErrorBuffer",
-            "DeviceGetDefaultQueue",
             "DeviceGetQueue",
             "DeviceInjectError",
             "DevicePushErrorScope"
diff --git a/src/dawn_wire/client/Device.cpp b/src/dawn_wire/client/Device.cpp
index 2c87b7c..95be206 100644
--- a/src/dawn_wire/client/Device.cpp
+++ b/src/dawn_wire/client/Device.cpp
@@ -229,10 +229,6 @@
         return ToAPI(mQueue);
     }
 
-    WGPUQueue Device::GetDefaultQueue() {
-        return GetQueue();
-    }
-
     // TODO(dawn:800): Once the deprecated computeStage field is removed this method will no longer
     // be needed and DeviceCreateComputePipeline can be removed from client_handwritten_commands in
     // dawn_wire.json
diff --git a/src/dawn_wire/client/Device.h b/src/dawn_wire/client/Device.h
index 2c0d35c..0bc2ca3 100644
--- a/src/dawn_wire/client/Device.h
+++ b/src/dawn_wire/client/Device.h
@@ -64,8 +64,6 @@
                                                  WGPUCreatePipelineAsyncStatus status,
                                                  const char* message);
 
-        // TODO(dawn:22): Remove once the deprecation period is finished.
-        WGPUQueue GetDefaultQueue();
         WGPUQueue GetQueue();
 
         void CancelCallbacksForDisconnect() override;