| Index: ui/android/java/src/org/chromium/ui/picker/InputDialogContainer.java
|
| diff --git a/ui/android/java/src/org/chromium/ui/picker/InputDialogContainer.java b/ui/android/java/src/org/chromium/ui/picker/InputDialogContainer.java
|
| index c59f4653f784e04dd729baf490b130162126be0a..48304d546fab00e1dfd29b091c01fa5568c456bd 100644
|
| --- a/ui/android/java/src/org/chromium/ui/picker/InputDialogContainer.java
|
| +++ b/ui/android/java/src/org/chromium/ui/picker/InputDialogContainer.java
|
| @@ -76,7 +76,7 @@ public class InputDialogContainer {
|
| }
|
|
|
| public void showPickerDialog(final int dialogType, double dialogValue,
|
| - double min, double max, double step) {
|
| + double min, double max, double step) {
|
| Calendar cal;
|
| // |dialogValue|, |min|, |max| mean different things depending on the |dialogType|.
|
| // For input type=month is the number of months since 1970.
|
| @@ -139,7 +139,7 @@ public class InputDialogContainer {
|
| DateTimeSuggestion[] suggestions) {
|
| ListView suggestionListView = new ListView(mContext);
|
| final DateTimeSuggestionListAdapter adapter =
|
| - new DateTimeSuggestionListAdapter(mContext, Arrays.asList(suggestions));
|
| + new DateTimeSuggestionListAdapter(mContext, Arrays.asList(suggestions));
|
| suggestionListView.setAdapter(adapter);
|
| suggestionListView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
|
| @Override
|
| @@ -361,7 +361,7 @@ public class InputDialogContainer {
|
| mInputActionDelegate.replaceDateTime((year - 1970) * 12 + month);
|
| } else if (dialogType == sTextInputTypeWeek) {
|
| mInputActionDelegate.replaceDateTime(
|
| - WeekPicker.createDateFromWeek(year, week).getTimeInMillis());
|
| + WeekPicker.createDateFromWeek(year, week).getTimeInMillis());
|
| } else if (dialogType == sTextInputTypeTime) {
|
| mInputActionDelegate.replaceDateTime(TimeUnit.HOURS.toMillis(hourOfDay) +
|
| TimeUnit.MINUTES.toMillis(minute) +
|
|
|