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

Unified Diff: content/browser/renderer_host/ime_adapter_android.h

Issue 11418295: Use WebCore:DateTimeChooser for date/time form types instead of considering them text fields. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 8 years 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/renderer_host/ime_adapter_android.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/ime_adapter_android.h
diff --git a/content/browser/renderer_host/ime_adapter_android.h b/content/browser/renderer_host/ime_adapter_android.h
index 0f1097f6a7e3612839feaa223d1e0894f09fcb81..13072a1e687ab51bf4fee862c58539f9c772b783 100644
--- a/content/browser/renderer_host/ime_adapter_android.h
+++ b/content/browser/renderer_host/ime_adapter_android.h
@@ -38,8 +38,6 @@ class ImeAdapterAndroid {
void SetComposingText(JNIEnv*, jobject, jstring text, int new_cursor_pos);
void CommitText(JNIEnv*, jobject, jstring text);
void AttachImeAdapter(JNIEnv*, jobject java_object);
- void ReplaceText(JNIEnv*, jobject, jstring text);
- void ClearFocus(JNIEnv*, jobject);
void SetEditableSelectionOffsets(JNIEnv*, jobject, int start, int end);
void SetComposingRegion(JNIEnv*, jobject, int start, int end);
void DeleteSurroundingText(JNIEnv*, jobject, int before, int after);
@@ -52,6 +50,10 @@ class ImeAdapterAndroid {
// Called from native -> java
void CancelComposition();
+ // Native methods related to dialog like types
+ void CancelDialog(JNIEnv*, jobject);
+ void ReplaceDateTime(JNIEnv*, jobject, jstring text);
+
private:
RenderWidgetHostViewAndroid* rwhva_;
jobject java_ime_adapter_;
« no previous file with comments | « no previous file | content/browser/renderer_host/ime_adapter_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698