Rename nxtProcTable and nxtSetProcs to dawn
diff --git a/examples/SampleUtils.cpp b/examples/SampleUtils.cpp
index 81e840f..3509c56 100644
--- a/examples/SampleUtils.cpp
+++ b/examples/SampleUtils.cpp
@@ -85,11 +85,11 @@
     binding->SetWindow(window);
 
     dawnDevice backendDevice;
-    nxtProcTable backendProcs;
+    dawnProcTable backendProcs;
     binding->GetProcAndDevice(&backendProcs, &backendDevice);
 
     dawnDevice cDevice = nullptr;
-    nxtProcTable procs;
+    dawnProcTable procs;
     switch (cmdBufType) {
         case CmdBufType::None:
             procs = backendProcs;
@@ -105,7 +105,7 @@
                 c2sBuf->SetHandler(wireServer);
 
                 dawnDevice clientDevice;
-                nxtProcTable clientProcs;
+                dawnProcTable clientProcs;
                 wireClient = dawn::wire::NewClientDevice(&clientProcs, &clientDevice, c2sBuf);
                 s2cBuf->SetHandler(wireClient);
 
@@ -115,7 +115,7 @@
             break;
     }
 
-    nxtSetProcs(&procs);
+    dawnSetProcs(&procs);
     procs.deviceSetErrorCallback(cDevice, PrintDeviceError, 0);
     return dawn::Device::Acquire(cDevice);
 }