Skip to content

Commit

Permalink
[Android] Replace org.chromium.base.Consumer with Java's
Browse files Browse the repository at this point in the history
Chromium change:
chromium/chromium@b1683dc

Replace org.chromium.base.Consumer with Java's (except in chromecast/)
No behavior is changed.
Most changes are trivial automated replacement of the imports.
This was unblocked by the default min SDK being bumped to 24 in
crrev.com/c/4000311.
The corresponding bump in chromecast/ (crrev.com/c/3928245) needs more
time to stick for sure, so org.chromium.base.Consumer is moved to
org.chromium.chromecast.base.* for the moment.

Bug: 1034012
  • Loading branch information
samartnik authored and cdesouza-chromium committed Jan 25, 2023
1 parent 16ba66b commit f357ce8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
import org.json.JSONException;
import org.json.JSONObject;

import org.chromium.base.Consumer;
import org.chromium.base.ContextUtils;
import org.chromium.base.IntentUtils;
import org.chromium.chrome.R;
Expand Down Expand Up @@ -61,6 +60,7 @@
import java.util.Arrays;
import java.util.List;
import java.util.Objects;
import java.util.function.Consumer;

public class QuickActionSearchAndBookmarkWidgetProvider extends AppWidgetProvider {
static class QuickActionSearchAndBookmarkWidgetProviderDelegate
Expand Down

0 comments on commit f357ce8

Please sign in to comment.