Fix build due to ViewProvider.CreateView removal

ViewProvider.CreateView was removed from the FIDL protocol, so we need
to remove it here.

Change-Id: I162527309cd06416a635ae212e5cdf1b02bede6a
Reviewed-on: https://fuchsia-review.googlesource.com/c/third_party/Vulkan-Tools/+/863900
Reviewed-by: Craig Stout <cstout@google.com>
Commit-Queue: Auto-Submit <auto-submit@fuchsia-infra.iam.gserviceaccount.com>
Fuchsia-Auto-Submit: John Bauman <jbauman@google.com>
diff --git a/cube/fuchsia/flatland_view.cpp b/cube/fuchsia/flatland_view.cpp
index b479a5f..98b33e1 100644
--- a/cube/fuchsia/flatland_view.cpp
+++ b/cube/fuchsia/flatland_view.cpp
@@ -100,12 +100,6 @@
         });
 }
 
-void FlatlandViewProviderService::CreateView(zx::eventpair view_token,
-                                             fidl::InterfaceRequest<fuchsia::sys::ServiceProvider> incoming_services,
-                                             fidl::InterfaceHandle<fuchsia::sys::ServiceProvider> outgoing_services) {
-    FX_NOTIMPLEMENTED() << "Only Flatland is supported. This is a Gfx ViewProvider method.";
-}
-
 void FlatlandViewProviderService::CreateViewWithViewRef(zx::eventpair view_token,
                                                         fuchsia::ui::views::ViewRefControl view_ref_control,
                                                         fuchsia::ui::views::ViewRef view_ref) {
diff --git a/cube/fuchsia/flatland_view.h b/cube/fuchsia/flatland_view.h
index 70c8932..a9b9703 100644
--- a/cube/fuchsia/flatland_view.h
+++ b/cube/fuchsia/flatland_view.h
@@ -60,8 +60,6 @@
     FlatlandViewProviderService(sys::ComponentContext* context, CreateView2Callback create_view_callback);
 
     // fuchsia::ui::app::ViewProvider methods.
-    void CreateView(zx::eventpair view_token, fidl::InterfaceRequest<fuchsia::sys::ServiceProvider> incoming_services,
-                    fidl::InterfaceHandle<fuchsia::sys::ServiceProvider> outgoing_services) override;
     void CreateViewWithViewRef(zx::eventpair view_token, fuchsia::ui::views::ViewRefControl view_ref_control,
                                fuchsia::ui::views::ViewRef view_ref) override;
     void CreateView2(fuchsia::ui::app::CreateView2Args args) override;