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

Unified Diff: content/renderer/renderer_date_time_picker.h

Issue 12191005: Move Android Date/Time parsing to the renderer (C++ and ICU) instead of the current parsing that ha… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased view_messages.h and fixed the link issue on the linux bot Created 7 years, 10 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/renderer_date_time_picker.h
diff --git a/content/renderer/renderer_date_time_picker.h b/content/renderer/renderer_date_time_picker.h
index 1a61227fc823312b0050ac8f352b0bf69b8b02e9..23dcf686193c05e308a20368f2955d6fe480ba5a 100644
--- a/content/renderer/renderer_date_time_picker.h
+++ b/content/renderer/renderer_date_time_picker.h
@@ -8,7 +8,8 @@
#include "base/basictypes.h"
#include "content/public/renderer/render_view_observer.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebDateTimeChooserParams.h"
-#include "ui/base/ime/text_input_type.h"
+
+struct ViewHostMsg_DateTimeDialogValue_Params;
namespace WebKit {
class WebDateTimeChooserCompletion;
@@ -28,7 +29,7 @@ class RendererDateTimePicker : public RenderViewObserver {
bool Open();
private:
- void OnReplaceDateTime(const string16& new_date);
+ void OnReplaceDateTime(const ViewHostMsg_DateTimeDialogValue_Params& value);
void OnCancel();
// RenderViewObserver

Powered by Google App Engine
This is Rietveld 408576698