diff options
author | Kristian Monsen <kristianm@google.com> | 2010-07-30 10:46:49 +0100 |
---|---|---|
committer | Kristian Monsen <kristianm@google.com> | 2010-08-04 13:01:34 +0100 |
commit | 0617145a89917ae7735fe1c9538688ab9a577df5 (patch) | |
tree | 56206078694427c37ed7bdf27eb5221398b833c0 /WebKit/ChangeLog | |
parent | ef1adcdfc805d4d13103f6f15cc5b4d96828a60f (diff) | |
download | external_webkit-0617145a89917ae7735fe1c9538688ab9a577df5.zip external_webkit-0617145a89917ae7735fe1c9538688ab9a577df5.tar.gz external_webkit-0617145a89917ae7735fe1c9538688ab9a577df5.tar.bz2 |
Merge WebKit at r64264 : Initial merge by git.
Change-Id: Ic42bef02efef8217a0f84c47176a9c617c28d1f1
Diffstat (limited to 'WebKit/ChangeLog')
-rw-r--r-- | WebKit/ChangeLog | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog index d4d2431..76b6fb4 100644 --- a/WebKit/ChangeLog +++ b/WebKit/ChangeLog @@ -1,3 +1,68 @@ +2010-07-26 Rafael Antognolli <antognolli@profusion.mobi> + + Reviewed by Antonio Gomes. + + [EFL] Move CMakeListsEfl.txt to WebKit/efl/ + https://bugs.webkit.org/show_bug.cgi?id=43002 + + This should reduce the noise in WebKit/ChangeLog that comes from EFL + port. Most of the changes on EFL port should be logged in + WebKit/efl/ChangeLog. + + * CMakeLists.txt: Just change the path from where to include the file. + +2010-07-23 Rafael Antognolli <antognolli@profusion.mobi> + + Reviewed by Antonio Gomes. + + [EFL] Cleanup glib support (make it optional) + https://bugs.webkit.org/show_bug.cgi?id=42480 + + Just add glib flags and directories if necessary. + + * CMakeListsEfl.txt: + +2010-07-23 Rafael Antognolli <antognolli@profusion.mobi> + + Reviewed by Antonio Gomes. + + [EFL] Add support for using libcurl network backend. + https://bugs.webkit.org/show_bug.cgi?id=42286 + + Just add soup/curl directories and flags for the specific + backend being used. + + * CMakeLists.txt: + * CMakeListsEfl.txt: + +2010-07-22 Lucas De Marchi <lucas.demarchi@profusion.mobi> + + Reviewed by Antonio Gomes. + + [EFL] Implement input method notification + https://bugs.webkit.org/show_bug.cgi?id=42640 + + Notify browser when keyboard should be shown/hidden. Input method + hints are updated before sending the signal. Client should be able to + determine the input type by calling ewk_view_imh_get(). + + * efl/EWebLauncher/main.c: + (on_inputmethod_changed): example implementation that just prints to + stdout if keyboard should be shown or hidden and the imh flags. + (browserCreate): listen to signal about input method changing its + state. + * efl/WebCoreSupport/EditorClientEfl.cpp: + (WebCore::EditorClientEfl::setInputMethodState): call new function + responsible for implementing this notification. + * efl/ewk/ewk_private.h: ewk_view_input_method_state_set() is called + only from inside WebKit. + * efl/ewk/ewk_view.cpp: implement setters and getters + (ewk_view_imh_get): + (ewk_view_input_method_state_set): + * efl/ewk/ewk_view.h: introduce Ewk_Imh enum which contains the + possible input types. + (_Ewk_View_Smart_Class::): + 2010-07-20 Lucas De Marchi <lucas.demarchi@profusion.mobi> Reviewed by Kenneth Rohde Christiansen. |