ExtServices: update to work with the new autofill inline suggestions API

Test: manual verification
Bug: 146454892

Change-Id: I5fb244dbb40e97727f2b2b3ef67e071cc2e5acd6
diff --git a/src/android/ext/services/autofill/InlineSuggestionRenderServiceImpl.java b/src/android/ext/services/autofill/InlineSuggestionRenderServiceImpl.java
index 1cd68d8..8ba35f7 100644
--- a/src/android/ext/services/autofill/InlineSuggestionRenderServiceImpl.java
+++ b/src/android/ext/services/autofill/InlineSuggestionRenderServiceImpl.java
@@ -40,7 +40,6 @@
         Preconditions.checkNotNull(presentation, TAG + ": InlinePresentation should not be null");
 
         Log.v(TAG, "onRenderSuggestion: width=" + width + ", height=" + height);
-        return renderSlice(this, presentation.getSlice(),
-                presentation.getInlinePresentationSpec().getStyle());
+        return renderSlice(this, presentation.getSlice(), /* style */ null);
     }
 }