| Index: content/renderer/render_view_impl.h
|
| diff --git a/content/renderer/render_view_impl.h b/content/renderer/render_view_impl.h
|
| index ce73969bdbb9091d2e00114428b8d4c90bfe31f4..1dd08f66ebafa645637e45f104baa2cc70dde3b5 100644
|
| --- a/content/renderer/render_view_impl.h
|
| +++ b/content/renderer/render_view_impl.h
|
| @@ -103,6 +103,8 @@ class WebApplicationCacheHostClient;
|
| class WebCompositorOutputSurface;
|
| class WebDOMMessageEvent;
|
| class WebDataSource;
|
| +class WebDateTimeChooserCompletion;
|
| +class WebDateTimeChooserParams;
|
| class WebDragData;
|
| class WebGeolocationClient;
|
| class WebGestureEvent;
|
| @@ -155,6 +157,7 @@ class NotificationProvider;
|
| class RenderViewObserver;
|
| class RenderViewTest;
|
| class RendererAccessibility;
|
| +class RendererDateTimePickerImpl;
|
| class RendererPpapiHost;
|
| class RendererWebColorChooserImpl;
|
| class RenderWidgetFullscreenPepper;
|
| @@ -494,6 +497,11 @@ class CONTENT_EXPORT RenderViewImpl
|
| virtual void cancelScheduledContentIntents();
|
| virtual WebKit::WebContentDetectionResult detectContentAround(
|
| const WebKit::WebHitTestResult& touch_hit);
|
| +
|
| + // Only used on android since all other platforms implement
|
| + // MULTIPLE FIELDS
|
| + virtual bool openDateTimeChooser(const WebKit::WebDateTimeChooserParams&,
|
| + WebKit::WebDateTimeChooserCompletion*);
|
| #endif
|
|
|
| // WebKit::WebFrameClient implementation -------------------------------------
|
| @@ -1435,7 +1443,10 @@ class CONTENT_EXPORT RenderViewImpl
|
| // The active find-in-page match ordinal during synchronous requests.
|
| // Needed to be remembered across WebKit callbacks.
|
| int synchronous_find_active_match_ordinal_;
|
| -#endif
|
| +
|
| + // A date/time picker object for input type=date and similar.
|
| + scoped_ptr<RendererDateTimePickerImpl> date_time_picker_client_;
|
| + #endif
|
|
|
| // Misc ----------------------------------------------------------------------
|
|
|
|
|