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

Unified Diff: content/browser/android/date_time_chooser_android.h

Issue 15057004: Week picker for android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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
« no previous file with comments | « no previous file | content/browser/android/date_time_chooser_android.cc » ('j') | content/common/view_messages.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 6709c38b34b1c25bfe311298934a5d5dd91fedfd..052ae7df959cd88a8ff40d2e9c3f1434e111cfde 100644
--- a/content/browser/android/date_time_chooser_android.h
+++ b/content/browser/android/date_time_chooser_android.h
@@ -25,12 +25,14 @@ class DateTimeChooserAndroid {
void ShowDialog(ContentViewCore* content,
RenderViewHost* sender,
int type, int year, int month, int day,
- int hour, int minute, int second);
+ int hour, int minute, int second,
+ int week_year, int week);
// 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 hour, jint minute, jint second,
+ jint weekYear, jint week);
// Closes the dialog without propagating any changes.
void CancelDialog(JNIEnv* env, jobject);
@@ -40,7 +42,7 @@ class DateTimeChooserAndroid {
static void InitializeDateInputTypes(
int text_input_type_date, int text_input_type_date_time,
int text_input_type_date_time_local, int text_input_type_month,
- int text_input_type_time);
+ int text_input_type_time, int text_input_type_week);
private:
class DateTimeIPCSender;
« no previous file with comments | « no previous file | content/browser/android/date_time_chooser_android.cc » ('j') | content/common/view_messages.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698