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

Unified Diff: content/public/android/java/src/org/chromium/content/browser/input/ChromeDatePickerDialog.java

Issue 574673003: Move *Picker.java and *PickerDialog.java to ui/android/java/... - Part1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Build break fixed Created 6 years, 3 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: content/public/android/java/src/org/chromium/content/browser/input/ChromeDatePickerDialog.java
diff --git a/content/public/android/java/src/org/chromium/content/browser/input/ChromeDatePickerDialog.java b/content/public/android/java/src/org/chromium/content/browser/input/ChromeDatePickerDialog.java
deleted file mode 100644
index 8e7987b86b24a9b7ed3dcafe0274d0ae46bb0006..0000000000000000000000000000000000000000
--- a/content/public/android/java/src/org/chromium/content/browser/input/ChromeDatePickerDialog.java
+++ /dev/null
@@ -1,42 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-package org.chromium.content.browser.input;
-
-import android.content.Context;
-import android.content.DialogInterface;
-import android.widget.DatePicker;
-
-/**
- * The behavior of the DatePickerDialog changed after JellyBean so it now calls
- * OndateSetListener.onDateSet() even when the dialog is dismissed (e.g. back button, tap
- * outside). This class will call the listener instead of the DatePickerDialog only when the
- * BUTTON_POSITIVE has been clicked.
- */
-class ChromeDatePickerDialog extends android.app.DatePickerDialog {
- private final OnDateSetListener mCallBack;
-
- public ChromeDatePickerDialog(Context context,
- OnDateSetListener callBack,
- int year,
- int monthOfYear,
- int dayOfMonth) {
- super(context, 0, callBack, year, monthOfYear, dayOfMonth);
- mCallBack = callBack;
- }
-
- /**
- * The superclass DatePickerDialog has null for OnDateSetListener so we need to call the
- * listener manually.
- */
- @Override
- public void onClick(DialogInterface dialog, int which) {
- if (which == BUTTON_POSITIVE && mCallBack != null) {
- DatePicker datePicker = getDatePicker();
- datePicker.clearFocus();
- mCallBack.onDateSet(datePicker, datePicker.getYear(),
- datePicker.getMonth(), datePicker.getDayOfMonth());
- }
- }
-}

Powered by Google App Engine
This is Rietveld 408576698