Commit c5a972ef authored by Clark DuVall's avatar Clark DuVall Committed by Chromium LUCI CQ

Add another @DoNotInline to autofill_assistant

This was found by running the check from http://crrev.com/c/2567476.

Bug: 1154061
Change-Id: Ibcbdd2e8f2005b82cb784a2b16d34cbfc53bcb94
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2568223
Auto-Submit: Clark DuVall <cduvall@chromium.org>
Commit-Queue: Andrew Grieve <agrieve@chromium.org>
Reviewed-by: default avatarAndrew Grieve <agrieve@chromium.org>
Cr-Commit-Position: refs/heads/master@{#832611}
parent 07bb169a
...@@ -4,11 +4,16 @@ ...@@ -4,11 +4,16 @@
package org.chromium.chrome.browser.autofill_assistant; package org.chromium.chrome.browser.autofill_assistant;
import org.chromium.base.annotations.DoNotInline;
import java.util.List; import java.util.List;
/** /**
* Interface for direct action containers. * Interface for direct action containers.
*/ */
// TODO(crbug.com/1145287): DexSplitter has issues with interfaces that have a single implementer
// inside a DFM.
@DoNotInline
interface AutofillAssistantDirectAction { interface AutofillAssistantDirectAction {
/** Returns a list of name and aliases for this direct action. */ /** Returns a list of name and aliases for this direct action. */
List<String> getNames(); List<String> getNames();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment