Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(36)

Unified Diff: ui/android/java/src/org/chromium/ui/picker/InputDialogContainer.java

Issue 654293002: Fix Java indentation issues. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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) +

Powered by Google App Engine
This is Rietveld 408576698