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

Unified Diff: Source/WebKit/efl/ChangeLog

Issue 6541090: Merge 79107 - 2011-02-19 Charlie Reis <creis@chromium.org>... (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/648/
Patch Set: Created 9 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: Source/WebKit/efl/ChangeLog
===================================================================
--- Source/WebKit/efl/ChangeLog (revision 79367)
+++ Source/WebKit/efl/ChangeLog (working copy)
@@ -1,3 +1,224 @@
+2011-02-19 Charlie Reis <creis@chromium.org>
+
+ Reviewed by Mihai Parparita.
+
+ Ensure loading has stopped in HistoryController::goToItem
+ https://bugs.webkit.org/show_bug.cgi?id=54517
+
+ Add a FrameLoaderClient callback for whether to stop loading before goToItem.
+
+ Test: http/tests/navigation/forward-to-fragment-fires-onload.html
+
+ * WebCoreSupport/FrameLoaderClientEfl.cpp:
+ (WebCore::FrameLoaderClientEfl::shouldStopLoadingForHistoryItem): Added.
+ * WebCoreSupport/FrameLoaderClientEfl.h:
+
+2011-02-18 Gyuyoung Kim <gyuyoung.kim@samsung.com>
+
+ Reviewed by Kent Tamura.
+
+ [EFL] Fix coding style errors in ewk_frame.h
+ https://bugs.webkit.org/show_bug.cgi?id=54718
+
+ Fix style errors in ewk_frame.h.
+
+ * ewk/ewk_frame.h:
+
+2011-02-18 Gyuyoung Kim <gyuyoung.kim@samsung.com>
+
+ Reviewed by Antonio Gomes.
+
+ [EFL] Remove proxy feature of soup when proxy is null
+ https://bugs.webkit.org/show_bug.cgi?id=54621
+
+ When proxy value is NULL, remove proxy feature in soup.
+
+ * ewk/ewk_settings.cpp:
+ (ewk_settings_proxy_uri_set):
+
+2011-02-18 Gyuyoung Kim <gyuyoung.kim@samsung.com>
+
+ Reviewed by Kent Tamura.
+
+ [EFL] Fix coding style errors in ewk_view.h
+ https://bugs.webkit.org/show_bug.cgi?id=54624
+
+ Fix style errors in ewk_view.h.
+
+ * ewk/ewk_view.cpp:
+ (ewk_view_pre_render_relative_radius):
+ * ewk/ewk_view.h:
+
+2011-02-18 Patrick Gansterer <paroga@webkit.org>
+
+ Unreviewed build fix after r78634 and r78786.
+
+ * CMakeListsEfl.txt:
+
+2011-02-17 Ryuan Choi <ryuan.choi@samsung.com>
+
+ Reviewed by Kent Tamura.
+
+ [EFL] Possible crash of ewk_frame_contents_set
+ https://bugs.webkit.org/show_bug.cgi?id=54091
+
+ Use length of contents if contents_size parameter is bigger than length
+ of contents.
+
+ * ewk/ewk_frame.cpp:
+ (_ewk_frame_contents_set_internal):
+
+2011-02-17 Grzegorz Czajkowski <g.czajkowski@samsung.com>
+
+ Reviewed by Kent Tamura.
+
+ Doxygen documentation for ewk cookies
+ https://bugs.webkit.org/show_bug.cgi?id=54553
+
+ * ewk/ewk_cookies.cpp:
+ (ewk_cookies_file_set):
+ (ewk_cookies_policy_set):
+ (ewk_cookies_policy_get):
+ * ewk/ewk_cookies.h:
+
+2011-02-16 Gyuyoung Kim <gyuyoung.kim@samsung.com>
+
+ Unreviewed build fix.
+
+ [EFL] Build break on r78634
+ https://bugs.webkit.org/show_bug.cgi?id=54602
+
+ Build error because of r78634.
+
+ * CMakeListsEfl.txt:
+
+2011-01-26 MORITA Hajime <morrita@google.com>
+
+ Reviewed by Ryosuke Niwa.
+
+ Refactoring: Extract TextCheckerClient from EditorClient
+ https://bugs.webkit.org/show_bug.cgi?id=53213
+
+ * WebCoreSupport/EditorClientEfl.h:
+ (WebCore::EditorClientEfl::textChecker):
+
+2011-02-07 Ryosuke Niwa <rniwa@webkit.org>
+
+ Reviewed by Adam Barth.
+
+ Add EditorClient callbacks to override isDOMPasteAllowed and javaScriptCanAccessClipboard
+ https://bugs.webkit.org/show_bug.cgi?id=52417
+
+ Added two callback functions, canCopyCut and canPaste to EditorClient. They are currently
+ not implemented.
+
+ * WebCoreSupport/EditorClientEfl.cpp:
+ (WebCore::EditorClientEfl::canCopyCut): Added.
+ (WebCore::EditorClientEfl::canPaste): Added.
+ * WebCoreSupport/EditorClientEfl.h:
+
+2011-02-08 Adam Barth <abarth@webkit.org>
+
+ Reviewed by Eric Seidel.
+
+ Remove orphan code from old parser
+ https://bugs.webkit.org/show_bug.cgi?id=53984
+
+ * WebCoreSupport/ChromeClientEfl.h:
+
+2011-02-08 Lucas De Marchi <lucas.demarchi@profusion.mobi>
+
+ Unreviewed build fix.
+
+ [EFL] Fix when building with curl backend.
+
+ * ewk/ewk_settings.cpp:
+ (ewk_settings_proxy_uri_get):
+
+2011-02-07 Enrica Casucci <enrica@apple.com>
+
+ Reviewed Adam Roben and Darin Adler.
+
+ WebKit2: drag and drop support on Windows.
+ https://bugs.webkit.org/show_bug.cgi?id=52775
+
+ Removed createDragImageForLink from DragClient.
+
+ * WebCoreSupport/DragClientEfl.cpp:
+ * WebCoreSupport/DragClientEfl.h:
+
+2011-02-07 Patrick Gansterer <paroga@webkit.org>
+
+ Reviewed by Andreas Kling.
+
+ [EFL] FrameLoaderClient calls loadURLInChildFrame on the child's frame loader
+ https://bugs.webkit.org/show_bug.cgi?id=53892
+
+ * ewk/ewk_frame.cpp:
+ (ewk_frame_child_add): Use the loader of the core frame instead.
+
+2011-02-03 Adam Langley <agl@chromium.org>
+
+ Reviewed by Adam Barth.
+
+ Plumb mixed script URL to FrameLoaderClient
+ https://bugs.webkit.org/show_bug.cgi?id=52384
+
+ Regressions covered by http/tests/security/mixedContent/*
+
+ * WebCoreSupport/FrameLoaderClientEfl.cpp:
+ (WebCore::FrameLoaderClientEfl::didRunInsecureContent):
+ * WebCoreSupport/FrameLoaderClientEfl.h:
+
+2011-02-01 Gyuyoung Kim <gyuyoung.kim@samsung.com>
+
+ Reviewed by Antonio Gomes.
+
+ [EFL] Add an API to get proxy address.
+ https://bugs.webkit.org/show_bug.cgi?id=52990
+
+ Gets the proxy URI from network backend. This API returns a proxy URI
+ which is set up by ewk_settings_proxy_uri_set(). But, it only implements
+ this API for libsoup backend.
+
+ * ewk/ewk_settings.cpp:
+ (ewk_settings_proxy_uri_get):
+ * ewk/ewk_settings.h:
+
+2011-01-29 Dan Winship <danw@gnome.org>
+
+ Reviewed by Xan Lopez.
+
+ [GTK] Remove HAVE_LIBSOUP_2_29_90 conditionals; we depend on
+ libsoup 2.33.1 now.
+ https://bugs.webkit.org/show_bug.cgi?id=50675
+
+ * ewk/ewk_cookies.cpp:
+ (ewk_cookies_file_set):
+ (ewk_cookies_policy_set):
+ (ewk_cookies_policy_get):
+
+2011-01-28 Dan Bernstein <mitz@apple.com>
+
+ Reviewed by Sam Weinig.
+
+ <select> can't display right-to-left (rtl) languages
+ https://bugs.webkit.org/show_bug.cgi?id=19785
+
+ * WebCoreSupport/ChromeClientEfl.cpp:
+ (WebCore::ChromeClientEfl::selectItemAlignmentFollowsMenuWritingDirection): Added.
+ * WebCoreSupport/ChromeClientEfl.h:
+
+2011-01-27 Nate Chapin <japhet@chromium.org>
+
+ Reviewed by Adam Barth.
+
+ Use Document::url() instead of FrameLoader::url().
+ https://bugs.webkit.org/show_bug.cgi?id=41165
+
+ * ewk/ewk_frame.cpp:
+ (ewk_frame_uri_changed):
+
2011-01-14 Patrick Gansterer <paroga@webkit.org>
Unreviewed. Try to fix EFL build.
« no previous file with comments | « Source/WebKit/chromium/src/WebFrameImpl.cpp ('k') | Source/WebKit/efl/WebCoreSupport/FrameLoaderClientEfl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698