IVGCVSW-3382 Deprecate ResizeBilinear and use Resize with Bilinear method

!armnn:1450

Signed-off-by: Aron Virginas-Tar <Aron.Virginas-Tar@arm.com>
Change-Id: I901f5093933aa8c1cfa05d8af383ef06a1c1f203
diff --git a/1.0/HalPolicy.cpp b/1.0/HalPolicy.cpp
index 332295d..dacf3b0 100644
--- a/1.0/HalPolicy.cpp
+++ b/1.0/HalPolicy.cpp
@@ -1225,26 +1225,27 @@
     const armnn::TensorInfo& inputInfo = input.GetTensorInfo();
     const armnn::TensorInfo& outputInfo = GetTensorInfoForOperand(*output);
 
-    armnn::ResizeBilinearDescriptor desc;
+    armnn::ResizeDescriptor desc;
+    desc.m_Method     = armnn::ResizeMethod::Bilinear;
     desc.m_DataLayout = armnn::DataLayout::NHWC;
 
     if (!IsLayerSupportedForAnyBackend(__func__,
-                                       armnn::IsResizeBilinearSupported,
+                                       armnn::IsResizeSupported,
                                        data.m_Backends,
                                        inputInfo,
-                                       outputInfo))
+                                       outputInfo,
+                                       desc))
     {
         return false;
     }
 
-
     if (!GetInputScalar<hal_1_0::HalPolicy>(operation, 1, OperandType::INT32, desc.m_TargetHeight, model, data) ||
         !GetInputScalar<hal_1_0::HalPolicy>(operation, 2, OperandType::INT32, desc.m_TargetWidth, model, data))
     {
         return Fail("%s: Operation has invalid inputs", __func__);
     }
 
-    armnn::IConnectableLayer* layer = data.m_Network->AddResizeBilinearLayer(desc);
+    armnn::IConnectableLayer* layer = data.m_Network->AddResizeLayer(desc);
 
     assert(layer != nullptr);