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

Unified Diff: content/renderer/date_time_formatter.h

Issue 23623019: Support datalist for date/time input types on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Used double to transfer value Created 7 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: content/renderer/date_time_formatter.h
diff --git a/content/renderer/date_time_formatter.h b/content/renderer/date_time_formatter.h
index b2b73410216be8e0ecc00e53cb04d7274ca46ada..4ae87ea9b0300774239596b82821da005b51318e 100644
--- a/content/renderer/date_time_formatter.h
+++ b/content/renderer/date_time_formatter.h
@@ -24,7 +24,6 @@ namespace content {
// It is timezone agnostic.
class CONTENT_EXPORT DateTimeFormatter {
public:
- explicit DateTimeFormatter(const WebKit::WebDateTimeChooserParams& source);
DateTimeFormatter(ui::TextInputType type,
int year,
int month,
@@ -37,16 +36,6 @@ class CONTENT_EXPORT DateTimeFormatter {
int week);
~DateTimeFormatter();
- int GetYear() const;
- int GetMonth() const;
- int GetDay() const;
- int GetHour() const;
- int GetMinute() const;
- int GetSecond() const;
- int GetMilli() const;
- int GetWeekYear() const;
- int GetWeek() const;
- ui::TextInputType GetType() const;
const std::string& GetFormattedValue() const;
private:

Powered by Google App Engine
This is Rietveld 408576698