| Index: content/browser/android/date_time_chooser_android.h
|
| diff --git a/content/browser/android/date_time_chooser_android.h b/content/browser/android/date_time_chooser_android.h
|
| index a5578e01b86425963cb39cf5c801c7f11551ccd3..47bd0cd40ebf92d4436cb88f12511c6172881e8a 100644
|
| --- a/content/browser/android/date_time_chooser_android.h
|
| +++ b/content/browser/android/date_time_chooser_android.h
|
| @@ -24,31 +24,15 @@ class DateTimeChooserAndroid {
|
| // DateTimeChooser implementation:
|
| void ShowDialog(ContentViewCore* content,
|
| RenderViewHost* host,
|
| - int type,
|
| - int year,
|
| - int month,
|
| - int day,
|
| - int hour,
|
| - int minute,
|
| - int second,
|
| - int milli,
|
| - int week,
|
| + int identifier,
|
| + int dialog_type,
|
| + double current_value,
|
| double min,
|
| double max,
|
| double step);
|
|
|
| - // Replaces the current value with the one passed the different fields
|
| - void ReplaceDateTime(JNIEnv* env,
|
| - jobject,
|
| - jint dialog_type,
|
| - jint year,
|
| - jint month,
|
| - jint day,
|
| - jint hour,
|
| - jint minute,
|
| - jint second,
|
| - jint milli,
|
| - jint week);
|
| + // Replaces the current value
|
| + void ReplaceDateTime(JNIEnv* env, jobject, jint identifier, jdouble value);
|
|
|
| // Closes the dialog without propagating any changes.
|
| void CancelDialog(JNIEnv* env, jobject);
|
|
|